(wat: unknown)
| 140 | * Import `isElement` from `@sentry/browser-utils` instead. |
| 141 | */ |
| 142 | export function isElement(wat: unknown): boolean { |
| 143 | return typeof Element !== 'undefined' && isInstanceOf(wat, Element); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Checks whether given value's type is an regexp |
nothing calls this directly
no test coverage detected