Intl.supportedValuesOf('timeZone')
.includes('America/Nuuk');
// Firefox = OK, V8 = OK
Intl.DateTimeFormat('ia', {
timeZone: 'America/Nuuk' })
// Firefox = Throws, V8 = Throws
Intl.DateTimeFormat('ia', {
timeZone: 'XXX' })
Intl.supportedValuesOf('timeZone')
.includes('America/Nuuk');
// Firefox = OK, V8 = OK
Intl.DateTimeFormat('ia', {
timeZone: 'America/Nuuk' })
// Firefox = Throws, V8 = Throws
Intl.DateTimeFormat('ia', {
timeZone: 'XXX' })