(timeZone: string)
| 103 | |
| 104 | /** The current wall-clock time in `timeZone` as a naive `yyyy-MM-ddTHH:mm` string. */ |
| 105 | export function wallClockNow(timeZone: string): string { |
| 106 | return zonedWallClock(new Date(), timeZone) |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * A `Date` whose device-local fields (year…minute) equal the wall-clock time of |
no test coverage detected