()
| 639 | let shouldTrack = true; |
| 640 | const trackStack = []; |
| 641 | function pauseTracking() { |
| 642 | trackStack.push(shouldTrack); |
| 643 | shouldTrack = false; |
| 644 | } |
| 645 | function resetTracking() { |
| 646 | const last = trackStack.pop(); |
| 647 | shouldTrack = last === void 0 ? true : last; |
no outgoing calls
no test coverage detected