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
Currently only the Gregorian calendar is available!
new Intl.DateTimeFormat([locales[, options]])
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat
The text was updated successfully, but these errors were encountered:
This should be solved by #1968.
Sorry, something went wrong.
Yes, Deno with ICU version works as expected.
$ ~/rust/deno/target/debug master* deno Deno 1.0.2 exit using ctrl+d or close() > const date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0)); undefined > console.log(new Intl.DateTimeFormat('en-US').format(date)); 12/20/2012 undefined > console.log(new Intl.DateTimeFormat('en-GB').format(date)); 20/12/2012 undefined > console.log(new Intl.DateTimeFormat(['ban', 'id']).format(date)); 20/12/2012 undefined
Node.js supports this possibility
duplicate of #1968
No branches or pull requests
Currently only the Gregorian calendar is available!
new Intl.DateTimeFormat([locales[, options]])
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat
The text was updated successfully, but these errors were encountered: