(el: (Node & ParentNode) | Element | null)
| 28 | } |
| 29 | |
| 30 | export function isAnchor(el: (Node & ParentNode) | Element | null): el is HTMLAnchorElement { |
| 31 | return (<HTMLAnchorElement>el).href !== undefined; |
| 32 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…