()
| 68 | } |
| 69 | |
| 70 | function nextFrame() { |
| 71 | return new Promise<void>((resolve) => { |
| 72 | window.requestAnimationFrame(() => resolve()) |
| 73 | }) |
| 74 | } |
| 75 | |
| 76 | async function collectGarbage() { |
| 77 | if (typeof window.gc === 'function') { |
no outgoing calls
no test coverage detected
searching dependent graphs…