(date: Date)
| 350 | }; |
| 351 | |
| 352 | export const formatMonthYearOnly = (date: Date): string => |
| 353 | new Date(date).toLocaleString('en-us', { |
| 354 | month: 'short', |
| 355 | year: 'numeric', |
| 356 | }); |
| 357 | |
| 358 | export const formatDateRange = ( |
| 359 | startDate: Date | number | string | null | undefined, |
no outgoing calls
no test coverage detected