(value: any)
| 34 | |
| 35 | /** Checks if a value is an element. */ |
| 36 | export function isElement(value: any): value is Element { |
| 37 | return value && (value as Element).nodeType === 1; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Reference to an overlay that has been created with the Overlay service. |
no outgoing calls
no test coverage detected