A convenient Javascript countries utilities (e.g: dial codes, country codes, names)
bower install --save bc-countries
var bcCountries = window.bcCountries;
npm install --save bc-countries
var 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 codecode
if exists,null
otherwise.getIso2CodeByDigits(digits)
: returns the iso2 code, given thatdigits
starts with that country dial code, an empty string otherwise.getDialCodeByDigits(digits)
: returns the dial code, given thatdigits
starts with that country dial code, an empty string otherwise.getAllCountries()
: returns all countries.
You can find the full documentation here.