Mappping of top level domains(tld) to countries and vice versa
npm install tld-countries`` js
const { getCountry, getTLD } = require('tld-countries');
console.log(getCountry('in')); // India
console.log(getTLD('India')); // in
console.log(getTLD('Nothing')); // undefined
`
Expects a top level domains(tld).
Returns the name for that country.
If not found, it returns undefined.
Expects the English country name.
Returns the tld for that country.
If not found, it returns undefined.
Returns an array of all country names.
Returns an array of all top level domains(tld).
Returns a key-value object of all countries using the name as key.
Returns a key-value object of all top level domains(tld) using the tld as key.
` cli``
npm install tld-countries
MIT