phanpy/src/utils/localeCode2Text.jsx
2023-06-05 11:40:30 +08:00

11 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;
}
}