()
| 142 | let stopTracker = () => { }; |
| 143 | |
| 144 | const ensureStarted = (): void => { |
| 145 | if (running || mode === "off") return; |
| 146 | stopTracker = starter(trackerOptions); |
| 147 | running = true; |
| 148 | }; |
| 149 | |
| 150 | if (mode === "eager") ensureStarted(); |
| 151 |
no outgoing calls
no test coverage detected