We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This Works fine with simple format in issue #64
cljs.user=> (require '[cljs-time.format :as fmt]) nil cljs.user=> (def yyyy-MM-dd (fmt/formatter "yyyy-MM-dd")) #'cljs.user/yyyy-MM-dd cljs.user=> (fmt/parse yyyy-MM-dd "2013-04-01") #object[Object 20130401T000000]
But for this format "dd-MMM-yyyy kk:mm aa" I got an error.
cljs.user=> (def my-formatter (fmt/formatter "dd-MMM-yyyy kk:mm aa")) #'cljs.user/my-formatter cljs.user=> (fmt/parse my-formatter "05-Dec-1992 12:00 PM")
The text was updated successfully, but these errors were encountered:
Hello, @sivakumargsk. aa is not a valid pattern. Only a or A allowed for meridiem.
aa
a
A
Sorry, something went wrong.
No branches or pull requests
This Works fine with simple format in issue #64
But for this format "dd-MMM-yyyy kk:mm aa" I got an error.
The text was updated successfully, but these errors were encountered: