mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Update utils.js
This commit is contained in:
parent
d818a37947
commit
12dc0657ba
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,8 @@ utils.code2flag = function (code) {
|
|||
switch (code) {
|
||||
case 'UK':
|
||||
return '🇬🇧'
|
||||
case 'INT':
|
||||
return '🌍'
|
||||
case 'UNSORTED':
|
||||
return ''
|
||||
default:
|
||||
|
@ -38,6 +40,7 @@ utils.code2name = function (code) {
|
|||
code = code.toUpperCase()
|
||||
if (regions[code]) return regions[code].name
|
||||
if (code === 'US') return 'United States'
|
||||
if (code === 'INT') return 'International'
|
||||
return intlDisplayNames.of(code)
|
||||
} catch (e) {
|
||||
return null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue