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 script:
console.log(new Date('March 31, 2013 23:59:59.9999'))
executes on Node.js and emits the following:
Sun Mar 31 2013 23:59:59 GMT-0700 (PDT)
but on Trireme it fails to create the Date and emits:
Invalid Date
Note: This appears to be an issue with processing the ms, as this works on Trireme:
console.log(new Date('March 31, 2013 23:59:59'))
The text was updated successfully, but these errors were encountered:
Note: This currently causes tests to fail for Volos on Trireme... but it's just a test failure, not a functional failure.
Sorry, something went wrong.
Opened issue 224 in Rhino, because that's where stuff like this can be fixed.
Aha. Well, that's why I couldn't find any related code in Trireme!
No branches or pull requests
This script:
executes on Node.js and emits the following:
but on Trireme it fails to create the Date and emits:
Note: This appears to be an issue with processing the ms, as this works on Trireme:
The text was updated successfully, but these errors were encountered: