A convenient Javascript countries utilities (e.g: dial codes, country codes, names)
bower install --save bc-countriesvar bcCountries = window.bcCountries;npm install --save bc-countriesvar bcCountries = require('bc-countries');Just copy the dist
A country is an object with keys (dialCode, iso2Code, name).
Functions that take digits, throw unless digits is a string of digits.
getCountryByIso2Code(iso2Code): returns the country with iso2 codecodeif exists,nullotherwise.getIso2CodeByDigits(digits): returns the iso2 code, given thatdigitsstarts with that country dial code, an empty string otherwise.getDialCodeByDigits(digits): returns the dial code, given thatdigitsstarts with that country dial code, an empty string otherwise.getAllCountries(): returns all countries.
You can find the full documentation here.