You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As Date string parsing through the Date constructor (or Date.parse) is discouraged and the format that V8 seems to parse is not the format that must be parsable according to the EcmaSript spec, if we'd implement this, I think it should be behind the Context.FEATURE_V8_EXTENSIONS flag
A Trireme user found the following Date format that works in V8, but not in Rhino:
$ node
$ rhino
Rhino 1.7.6 2015 04 15
js> new Date('March 31, 2013 23:59:59.9999')
Invalid Date
In the interests of V8 compatibility, we should try to figure out what Date format parsing rules they use and implement them.
apigee/trireme#123
The text was updated successfully, but these errors were encountered: