phanpy/src/utils/localeCode2Text.jsx

6 lines
141 B
React
Raw Normal View History

export default function localeCode2Text(code) {
return new Intl.DisplayNames(navigator.languages, {
type: 'language',
}).of(code);
}