UNPKG

country-to-language

Version:
8 lines (7 loc) 177 B
/** * * @param {string} country Country Code * @returns {string | null} */ declare function countryToLanguage(country: string): string | null; export { countryToLanguage };