(timestampOrDate: number | Date)
| 66 | } |
| 67 | |
| 68 | export function formatUtcIso(timestampOrDate: number | Date) { |
| 69 | return formatDateInUtc(timestampOrDate, ISO_FORMAT); |
| 70 | } |
| 71 | |
| 72 | export function formatBrowserTimezone(formatString?: string) { |
| 73 | return formatDate(new Date(), formatString ?? "z"); |
no test coverage detected