(id: number)
| 21 | } |
| 22 | |
| 23 | const cancelIdleCallbackPolyfill = (id: number): void => { |
| 24 | clearTimeout(id as unknown as ReturnType<typeof setTimeout>) |
| 25 | } |
| 26 | |
| 27 | export const safeRequestIdleCallback: ( |
| 28 | callback: IdleCallbackFunction, |
nothing calls this directly
no outgoing calls
no test coverage detected