()
| 121 | let stopped = false; |
| 122 | |
| 123 | const stop = (): void => { |
| 124 | if (stopped) return; |
| 125 | stopped = true; |
| 126 | clearInterval(interval); |
| 127 | }; |
| 128 | |
| 129 | const interval = setInterval(() => { |
| 130 | if (stopped) return; |
no outgoing calls
no test coverage detected