()
| 127 | return; |
| 128 | } |
| 129 | const run = () => { |
| 130 | idleHandle = null; |
| 131 | void syncCoreCache().catch(() => {}); |
| 132 | }; |
| 133 | if ("requestIdleCallback" in window) { |
| 134 | idleHandle = window.requestIdleCallback(run, {timeout: 5000}); |
| 135 | } else { |
nothing calls this directly
no test coverage detected