(nowMs = Date.now())
| 65 | } |
| 66 | |
| 67 | elapsedMs(nowMs = Date.now()): number { |
| 68 | return Math.max(0, nowMs - this.startedAtMs); |
| 69 | } |
| 70 | |
| 71 | isExpired(nowMs = Date.now()): boolean { |
| 72 | return this.remainingMs(nowMs) <= 0; |
no outgoing calls
no test coverage detected