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
The code at cookbook/getParseableZonedStringAtInstant.mjs merged by ca126f8 returns strings that lack UTC offset and time zone information required by the use case.
getParseableIanaZonedStringAtInstant( Temporal.Absolute.from("2020-01-09T00:00Z"), "Europe/Paris" ).replace(/(T\d+:\d+).*?([+-])/, "$1$2") === "2020-01-09T01:00+01:00[Europe/Paris]";
The text was updated successfully, but these errors were encountered:
Elaborate getParseableZonedStringAtInstant example
c8a993c
This makes sure the time zone designation is appended to the string, as mentioned in the original use case. Closes: #328
f57dd4d
ptomato
Successfully merging a pull request may close this issue.
The code at cookbook/getParseableZonedStringAtInstant.mjs merged by ca126f8 returns strings that lack UTC offset and time zone information required by the use case.
The text was updated successfully, but these errors were encountered: