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