(...args: any[])
| 17 | const queue: BundleImport[] = []; |
| 18 | |
| 19 | export const log = (...args: any[]) => { |
| 20 | // eslint-disable-next-line no-console |
| 21 | console.log( |
| 22 | `Preloader ${Date.now() - loadStart}ms ${preloadCount}/${queue.length} queued>`, |
| 23 | ...args |
| 24 | ); |
| 25 | }; |
| 26 | |
| 27 | export const resetQueue = () => { |
| 28 | bundles.clear(); |
no outgoing calls
no test coverage detected