()
| 193 | } |
| 194 | |
| 195 | pause(): void { |
| 196 | if (this.timerId == null) { |
| 197 | return; |
| 198 | } |
| 199 | |
| 200 | clearTimeout(this.timerId); |
| 201 | this.timerId = null; |
| 202 | this.remaining -= Date.now() - this.startTime!; |
| 203 | } |
| 204 | |
| 205 | resume(): void { |
| 206 | if (this.remaining <= 0) { |
no outgoing calls
no test coverage detected