(doc)
| 6 | * @return {boolean} |
| 7 | */ |
| 8 | export function isDocumentReady(doc) { |
| 9 | return ( |
| 10 | doc.readyState != ReadyState_Enum.LOADING && |
| 11 | // IE11-only |
| 12 | /** @type {string} */ (doc.readyState) != 'uninitialized' |
| 13 | ); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Whether the document has loaded all the css and sub-resources. |
no outgoing calls
no test coverage detected