Skip to content

cjcbusatto/ts-country-iso-2-to-3

 
 

Repository files navigation

ts-country-iso-2-to-3

Convert a country code ISO 3166-1 Alpha-2 to ISO 3166-1 Alpha-3... with types!

Introduction

This is a fork of country-iso-2-to-3.

Install

$ npm install ts-country-iso-2-to-3

Usage

import { getCountryISO3 } from 'ts-country-iso-2-to-3'

console.log(getCountryISO3('BR')) // BRA
console.log(getCountryISO3('US')) // USA
console.log(getCountryISO3('INVALID_ISO2')) // Error: No ISO3 reference was found for ISO2: "INVALID_ISO2"

API

getCountryISO3(countryCode: string): string

Parameter: A string with a country code in ISO 3166-1 Alpha-2

Return: A string with the country code in ISO 3166-1 Alpha-3


License

MIT © Balcony207

About

Convert a country code ISO 3166-1 Alpha-2 to ISO 3166-1 Alpha-3 including types

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 94.4%
  • JavaScript 5.6%