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
{{ message }}
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
Split item 5 of @anba review of #22 here so we can track the issue independently.
5. AvailableTimeZones ( region )
"If the region is undefined, then it return all the names." could be misread that it doesn't require the result to contain only unique, canonical, and case-regularised names.
We could provide a complete algorithm to make this case more clear:
Let names be a List of all Zone and Link names of the IANA Time Zone Database.
Let result be a new empty List.
For each element name of names, do
Assert: ! IsValidTimeZoneName(name) is true.
Let canonical be ! CanonicalizeTimeZoneName(name).
Append canonical to the end of result.
Sort result in simple lexicographic order.
Return result with all duplicate elements removed.
The text was updated successfully, but these errors were encountered:
Split item 5 of @anba review of #22 here so we can track the issue independently.
The text was updated successfully, but these errors were encountered: