You can't disable the view counter xD
x
1139
coodes - country-codes
version 1.2.5
1210
downloads
Examples
npm i coodes-country-codes
From Alpha2
1
Code
Copy
const country = findCountryFromAlpha2("US") console.log(country) // returns: "United States of America"
const country = findCountryFromAlpha3("USA") console.log(country) // returns: "United States of America"
From Alpha3
2
From Numeric
3
const country = findCountryFromAlphaUN(840) console.log(country) // returns: "United States of America"
const country = findAlpha2FromCountry("United States of America") console.log(country) // returns: "US"
To Alpha2
4
To Alpha3
5
const country = findAlpha3FromCountry("United States of America") console.log(country) // returns: "USA"
const country = findUNFromCountry("United States of America") console.log(country) // returns: "840"
To Numeric
6