UNPKG

@lion/ui

Version:

A package of extendable web components

11 lines (10 loc) 216 B
/** * @param {string[]} months */ export function forceShortMonthNamesForEnGb(months) { if (months[8] === 'Sept') { // eslint-disable-next-line no-param-reassign months[8] = 'Sep'; } return months; }