Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
protected setMomentLocaleData(locale: string) {
const momentLocaleData = moment.localeData(locale);
this.localeData = {
firstDayOfWeek: momentLocaleData.firstDayOfWeek(),
defaultFormat: momentLocaleData.longDateFormat('L'),
months: {
[TranslationWidth.SHORT]: momentLocaleData.monthsShort(),
[TranslationWidth.LONG]: momentLocaleData.months(),
},
days: {
[TranslationWidth.SHORT]: momentLocaleData.weekdaysShort(),
[TranslationWidth.LONG]: momentLocaleData.weekdays(),
},
};
}
}