(dateStr: string | Date)
| 16 | dayjs(new Date(date)).format("YYYY-MM-DD HH:mm"); |
| 17 | |
| 18 | export const formatToUTCDayMonth = (dateStr: string | Date) => |
| 19 | dayjs(dateStr).utc().format("DD MMM"); |
| 20 | |
| 21 | export const toUTC = (dateStr: string | Date) => dayjs(dateStr).utc(); |
| 22 |
no outgoing calls
no test coverage detected