(t: number | string)
| 192 | * Parse timestamp to Date |
| 193 | */ |
| 194 | export function parseTimestamp(t: number | string): Date { |
| 195 | return timestamp(t) as Date; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Convert Date object to Unix timestamp in seconds. |
nothing calls this directly
no test coverage detected
searching dependent graphs…