(obj: any)
| 198 | * Determines if `obj` is DOM `Text`. |
| 199 | */ |
| 200 | export function isDOMElement(obj: any): obj is Element { |
| 201 | return obj instanceof Element; |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Determines if `obj` is DOM `Text`. |
no outgoing calls
no test coverage detected
searching dependent graphs…