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
I've observed that:
chrono.parse('jan')
undefined
chrono.parse('jan ')
Date
This seems to be limited to months. I wonder if it's a word boundary issue?
chrono.parseDate("jan"); // undefined chrono.parseDate("jan "); // Date
Out of curiosity, I tried a few other short values. I'm not sure what I'd expect 2020 to return, maybe Jan 1st 2020? Not sure TBH
2020
chrono.parseDate("2020"); // undefined chrono.parseDate("2020 "); // undefined chrono.parseDate("mon"); // Date chrono.parseDate("mon "); // Date
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've observed that:
chrono.parse('jan')
returnsundefined
chrono.parse('jan ')
returns aDate
This seems to be limited to months. I wonder if it's a word boundary issue?
Out of curiosity, I tried a few other short values.
I'm not sure what I'd expect
2020
to return, maybe Jan 1st 2020? Not sure TBHThe text was updated successfully, but these errors were encountered: