Check if a Zone is the library's sentinel "unset" value.
The library uses a special Zone instance to represent unknown/unset timezones since Luxon doesn't officially support unset zones.
Zone instance to check
true if the zone is the UnsetZone sentinel value
isZoneUnset(UnsetZone) // trueisZoneUnset(Info.normalizeZone("UTC")) // falseisZoneUnset(Info.normalizeZone("UTC+8")) // false Copy
isZoneUnset(UnsetZone) // trueisZoneUnset(Info.normalizeZone("UTC")) // falseisZoneUnset(Info.normalizeZone("UTC+8")) // false
Check if a Zone is the library's sentinel "unset" value.
The library uses a special Zone instance to represent unknown/unset timezones since Luxon doesn't officially support unset zones.