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
The readme states that Chronic will parse specific dates formatted as "february 14, 2004".
However, the following doesn't work:
Chronic.parse("February 14, 2004") # <= nil
Whereas, whereas parsing without the comma does:
Chronic.parse("February 14 2004") # <= "Fri Dec 10 12:00:00 -0500 2010"
Thoughts?
The text was updated successfully, but these errors were encountered:
I just tripped over this as well.
Sorry, something went wrong.
Me too. I'll try to get in a pull request unless someone beats me to it.
Edit Also a string of "November 18th 2011" becomes "November 18th, 2010 at 20:11" But the string "November 18 2011" calculates correctly.
Just submitted a pull request for support for a format like "February 14th, 2010"
Closed by 2d420c7
No branches or pull requests
The readme states that Chronic will parse specific dates formatted as "february 14, 2004".
However, the following doesn't work:
Whereas, whereas parsing without the comma does:
Thoughts?
The text was updated successfully, but these errors were encountered: