UNPKG

@wulperstudio/cms

Version:
15 lines 402 B
import { DEFAULT_LANG } from '../constants'; import { log } from './log'; export function getDisplayNames() { var lang = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : DEFAULT_LANG; try { return new Intl.DisplayNames(lang, { type: 'region' }); } catch (error) { log(error); return new Intl.DisplayNames(DEFAULT_LANG, { type: 'region' }); } }