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
AdjustDateTimeStyleFormat determines a new format even when no conflicting options are present. This leads to the following results:
js> console.log(new Date(0).toLocaleString("ja", {dateStyle: "full"})) 1970年1月1日木曜日 js> console.log(new Temporal.PlainDate(1970, 1, 1).toLocaleString("ja", {dateStyle: "full"})) 1970/1/1木曜日
The polyfill already appears to use the original format, because it returns:
> console.log(new Temporal.PlainDate(1970, 1, 1).toLocaleString("ja", {dateStyle: "full"})) 1970年1月1日木曜日
The text was updated successfully, but these errors were encountered:
No branches or pull requests
AdjustDateTimeStyleFormat determines a new format even when no conflicting options are present. This leads to the following results:
The polyfill already appears to use the original format, because it returns:
The text was updated successfully, but these errors were encountered: