()
| 19 | } |
| 20 | |
| 21 | export function nowMs(): number { |
| 22 | return typeof performance !== 'undefined' ? performance.now() : Date.now(); |
| 23 | } |
| 24 | |
| 25 | export function roundDurationMs(durationMs: number): number { |
| 26 | return Math.round(durationMs * 10) / 10; |
no outgoing calls
no test coverage detected