Update utils.js
This commit is contained in:
parent
d818a37947
commit
12dc0657ba
|
@ -20,6 +20,8 @@ utils.code2flag = function (code) {
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case 'UK':
|
case 'UK':
|
||||||
return '🇬🇧'
|
return '🇬🇧'
|
||||||
|
case 'INT':
|
||||||
|
return '🌍'
|
||||||
case 'UNSORTED':
|
case 'UNSORTED':
|
||||||
return ''
|
return ''
|
||||||
default:
|
default:
|
||||||
|
@ -38,6 +40,7 @@ utils.code2name = function (code) {
|
||||||
code = code.toUpperCase()
|
code = code.toUpperCase()
|
||||||
if (regions[code]) return regions[code].name
|
if (regions[code]) return regions[code].name
|
||||||
if (code === 'US') return 'United States'
|
if (code === 'US') return 'United States'
|
||||||
|
if (code === 'INT') return 'International'
|
||||||
return intlDisplayNames.of(code)
|
return intlDisplayNames.of(code)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return null
|
return null
|
||||||
|
|
Loading…
Reference in New Issue