Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 4x 6x 6x 6x 6x 6x | export const formatDate = (dateString: string, lang: string): string => { const date = new Date(dateString) // Check if the date is valid Iif (isNaN(date.getTime())) { throw new Error('Invalid date') } const prefix = lang in ['en', 'fr'] ? lang : 'en' const options: Intl.DateTimeFormatOptions = { month: 'long', // Full month name day: 'numeric', // Numeric day of the month } return new Intl.DateTimeFormat(`${prefix}-CA`, options).format(date) } |