Convert between alpha2 ('us') and alpha3 ('USA') ISO 3166 country codes
npm install iso3166-alpha-converterjs
import { alpha2to3, alpha3to2 } from 'iso3166-alpha-converter'
alpha2to3["us"] // -> "USA"
alpha3to2["USA"] // -> "us"
`Development
`bash
Setup
npm install
poetry install
Build
npm run build
Test
npm test
``