mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 05:41:46 +03:00
676fa6fbc9
Srsly why…
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
export default function localeCode2Text(code) {
|
|
try {
|
|
return new Intl.DisplayNames(navigator.languages, {
|
|
type: 'language',
|
|
}).of(code);
|
|
} catch (e) {
|
|
console.error(e);
|
|
return null;
|
|
}
|
|
}
|