()
| 1748 | const idToTimeout = new Map<number, string>(); |
| 1749 | |
| 1750 | function resetCounters() { |
| 1751 | idleCallbacksRequested = 0; |
| 1752 | idleCallbacksInvoked = 0; |
| 1753 | idleCallbacksCancelled = 0; |
| 1754 | capturedOptions = undefined; |
| 1755 | activePerTimeout.clear(); |
| 1756 | idToTimeout.clear(); |
| 1757 | } |
| 1758 | resetCounters(); |
| 1759 | |
| 1760 | let nativeRequestIdleCallback: ( |
no test coverage detected
searching dependent graphs…