()
| 195 | } |
| 196 | |
| 197 | export function getBodyNode(): any | null { |
| 198 | if (typeof document != 'undefined') { |
| 199 | return document.body; |
| 200 | } |
| 201 | return null; |
| 202 | } |
| 203 | |
| 204 | export function containsElement(elm1: any, elm2: any): boolean { |
| 205 | while (elm2) { |
no outgoing calls
no test coverage detected
searching dependent graphs…