captbaritone / captbaritone/datejs
Order of formats in Date.parseExact()?
Open
auto-migrated
Priority-Medium
Type-Defect
- Dominant language
- JavaScript
- Stars
- 1
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```
Seems to be a problem in .parseExact() somewhere, or maybe it's in
Parser.finishExact. For example...
// returns null
Date.parseExact("November 2007", ["MMMM d", "MMMM yyyy"]);
// Switch the format order, and a valid date is returned
Date.parseExact("November 2007", ["MMMM yyyy", "MMMM d"]);
```
Original issue reported on code.google.com by `geoff%co...@gtempaccount.com` on 26 Nov 2007 at 6:10
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.