(wat: unknown)
| 45 | * @returns A boolean representing the result. |
| 46 | */ |
| 47 | export function isErrorEvent(wat: unknown): boolean { |
| 48 | return isBuiltin(wat, 'ErrorEvent'); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Checks whether given value's type is DOMError |
no test coverage detected