( el: HTMLElement | typeof window )
| 158 | // ============================== |
| 159 | |
| 160 | export function isDocumentElement( |
| 161 | el: HTMLElement | typeof window |
| 162 | ): el is typeof window { |
| 163 | return [document.documentElement, document.body, window].indexOf(el) > -1; |
| 164 | } |
| 165 | |
| 166 | // Normalized Scroll Top |
| 167 | // ------------------------------ |
no outgoing calls
no test coverage detected
searching dependent graphs…