All files / src/lib/utils dates.ts

85.71% Statements 6/7
50% Branches 2/4
100% Functions 1/1
85.71% Lines 6/7

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 184x 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)
}