(now?: Date)
| 159 | * - {Number} H, 0, 1, 9, 12, 23 |
| 160 | */ |
| 161 | export function datestruct(now?: Date): DateStruct { |
| 162 | now = now || new Date(); |
| 163 | return { |
| 164 | YYYYMMDD: now.getFullYear() * 10000 + (now.getMonth() + 1) * 100 + now.getDate(), |
| 165 | H: now.getHours(), |
| 166 | } satisfies DateStruct; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Get Unix's timestamp in seconds. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…