(date: Date)
| 17 | } |
| 18 | |
| 19 | export function formatDate(date: Date) { |
| 20 | const day = date.getDate(); |
| 21 | const month = new Intl.DateTimeFormat(getLocale(), { month: 'short' }) |
| 22 | .format(date) |
| 23 | .replace('.', '') |
| 24 | .toLowerCase(); |
| 25 | |
| 26 | return `${day} ${month}`; |
| 27 | } |
| 28 | |
| 29 | export function formatDateTime(date: Date) { |
| 30 | const datePart = formatDate(date); |
no test coverage detected