(target: Element)
| 1012 | } |
| 1013 | |
| 1014 | function isHTMLAnchorLink(target: Element): target is HTMLAnchorElement { |
| 1015 | return target.tagName === 'A' && target.hasAttribute('href'); |
| 1016 | } |
| 1017 | |
| 1018 | function isValidKeyboardEvent( |
| 1019 | event: KeyboardEvent | globalThis.KeyboardEvent, |
no test coverage detected