this repo has no description
at hotfix/infinite-loop-intersection-observer 10 lines 214 B view raw
1export default function localeCode2Text(code) { 2 try { 3 return new Intl.DisplayNames(navigator.languages, { 4 type: 'language', 5 }).of(code); 6 } catch (e) { 7 console.error(e); 8 return null; 9 } 10}