country-code-converter

Converts IOC, FIFA, ISO3, and IOS2 country codes.

Usage no npm install needed!

<script type="module">
  import countryCodeConverter from 'https://cdn.skypack.dev/country-code-converter';
</script>

README

country-code-converter

Converts IOC, FIFA, ISO3, and IOS2 country codes.

Documentation


 const {
  convertIOCCountryCode,
  convertFIFACountryCode,
  convertISO3CountryCode,
  convertISO2CountryCode,
  convertCountryName
} = require('./index')


console.log(convertIOCCountryCode('USA'))
console.log(convertFIFACountryCode('USA'))
console.log(convertISO3CountryCode('USA'))
console.log(convertISO2CountryCode('US'))
console.log(convertCountryName('United States'))