Skip to content

Commit

Permalink
Date Formatting: Ensure consistent "full" format with comma after day…
Browse files Browse the repository at this point in the history
… name (#92)
  • Loading branch information
stefanseifert authored May 21, 2024
1 parent 7672c46 commit b3f47d5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/utils/datetime.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const locale = 'en-GB';
const timeOptions = { hour: '2-digit', minute: '2-digit', timeZone: 'UTC' };
const dateFullOptions = { dateStyle: 'full' };
const datePatternWithoutComma = /^(\w+) (\d+ \w+ \d+)$/;

/**
* Format date in full format.
Expand All @@ -9,7 +10,13 @@ const dateFullOptions = { dateStyle: 'full' };
* @returns {string} Formatted date
*/
export function formatDateFull(date) {
return date.toLocaleDateString(locale, dateFullOptions);
const formattedDate = date.toLocaleDateString(locale, dateFullOptions);
// insert comma after day name if not already present
const match = datePatternWithoutComma.exec(formattedDate);
if (match) {
return `${match[1]}, ${match[2]}`;
}
return formattedDate;
}

/**
Expand Down

0 comments on commit b3f47d5

Please sign in to comment.