iso-countries-languages/scripts/utils.js

10 lines
285 B
JavaScript
Raw Normal View History

2020-07-24 03:19:26 +02:00
function getCountryName(country, lang) {
return country.tags[`name:${lang}`] || country.tags.name;
}
function getCountryCode(country) {
return country.tags.country_code_iso3166_1_alpha_2 || country.tags['ISO3166-1:alpha2'];
}
module.exports = { getCountryName, getCountryCode };