(nowMs = Date.now())
| 61 | } |
| 62 | |
| 63 | remainingMs(nowMs = Date.now()): number { |
| 64 | return Math.max(0, this.expiresAtMs - nowMs); |
| 65 | } |
| 66 | |
| 67 | elapsedMs(nowMs = Date.now()): number { |
| 68 | return Math.max(0, nowMs - this.startedAtMs); |
no outgoing calls
no test coverage detected