-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.ts
71 lines (71 loc) · 1.42 KB
/
countries.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
let largestAndEuropeanCountries: string[] = [
'RU', // Russia
'CN', // China
'CA', // Canada
'US', // United States
'BR', // Brazil
'AU', // Australia
'IN', // India
'AR', // Argentina
'KZ', // Kazakhstan
'DZ', // Algeria
'CD', // Democratic Republic of the Congo
'SA', // Saudi Arabia
'MX', // Mexico
'ID', // Indonesia
'SD', // Sudan
'LY', // Libya
'IR', // Iran
'MN', // Mongolia
'PE', // Peru
'TD', // Chad
'AL', // Albania
'AD', // Andorra
'AM', // Armenia
'AT', // Austria
'AZ', // Azerbaijan
'BY', // Belarus
'BE', // Belgium
'BA', // Bosnia and Herzegovina
'BG', // Bulgaria
'HR', // Croatia
'CY', // Cyprus
'CZ', // Czech Republic
'DK', // Denmark
'EE', // Estonia
'FI', // Finland
'FR', // France
'GE', // Georgia
'DE', // Germany
'GR', // Greece
'HU', // Hungary
'IS', // Iceland
'IE', // Ireland
'IT', // Italy
'XK', // Kosovo
'LV', // Latvia
'LI', // Liechtenstein
'LT', // Lithuania
'LU', // Luxembourg
'MT', // Malta
'MD', // Moldova
'MC', // Monaco
'ME', // Montenegro
'NL', // Netherlands
'MK', // North Macedonia
'NO', // Norway
'PL', // Poland
'PT', // Portugal
'RO', // Romania
'SM', // San Marino
'RS', // Serbia
'SK', // Slovakia
'SI', // Slovenia
'ES', // Spain
'SE', // Sweden
'CH', // Switzerland
'TR', // Turkey
'UA', // Ukraine
'GB', // United Kingdom
'VA' // Vatican City (Holy See)
];