()
| 1763 | const idToTimeout = new Map<number, string>(); |
| 1764 | |
| 1765 | function resetCounters() { |
| 1766 | idleCallbacksRequested = 0; |
| 1767 | idleCallbacksInvoked = 0; |
| 1768 | idleCallbacksCancelled = 0; |
| 1769 | capturedOptions = undefined; |
| 1770 | activePerTimeout.clear(); |
| 1771 | idToTimeout.clear(); |
| 1772 | } |
| 1773 | resetCounters(); |
| 1774 | |
| 1775 | let nativeRequestIdleCallback: ( |