country-currencies icon indicating copy to clipboard operation
country-currencies copied to clipboard

A mapping of countries (ISO 3166-1) to their most used currency (ISO 4217)

A map of countries' currency

A map of all ISO 3166-1 (country) alpha2 codes to an ISO 4217 currency code.

See also:

const currencies = require('country-currency');

console.log(currencies.map(c => c.country+', '+c.currency));
	// AD, EUR
	// …


// export a Map
byCountry()

const byCountry = currencies.byCountry();

byCountry.has('DK');
	// true

byCountry.get('DK');
	// DKK