(delayMs = restartDelayMs)
| 36 | } |
| 37 | |
| 38 | function scheduleRestart(delayMs = restartDelayMs) { |
| 39 | clearTimeout(restartTimer); |
| 40 | restartTimer = setTimeout(restart, delayMs); |
| 41 | } |
| 42 | |
| 43 | function restart() { |
| 44 | if (shuttingDown) return; |
no outgoing calls
no test coverage detected