()
| 229 | // `interactive` can and will be fired when their are still stylesheets loading. |
| 230 | // We use certain actions that can cause a forced layout change, which is bad. |
| 231 | export function isReadyStateComplete(): boolean { |
| 232 | return document.readyState === 'complete'; |
| 233 | } |
| 234 | |
| 235 | const readyStateCompleteListeners = new Set<() => void>(); |
| 236 |
no outgoing calls
no test coverage detected
searching dependent graphs…