2.0.0 • Published 10 years ago
bc-countries v2.0.0
bc-countries 
A convenient Javascript countries utilities (e.g: dial codes, country codes, names)
Installation
Bower
bower install --save bc-countriesvar bcCountries = window.bcCountries;NPM
npm install --save bc-countriesvar bcCountries = require('bc-countries');Other (not recommended)
Just copy the dist
Usage
Main functions
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.