()
| 323 | }; |
| 324 | |
| 325 | const clearTimeoutTimer = (): void => { |
| 326 | if (timeoutTimer) clearTimeout(timeoutTimer); |
| 327 | timeoutTimer = undefined; |
| 328 | }; |
| 329 | |
| 330 | const clearHardKillTimer = (): void => { |
| 331 | if (hardKillTimer) clearTimeout(hardKillTimer); |
no outgoing calls
no test coverage detected