(wat: unknown)
| 56 | * @returns A boolean representing the result. |
| 57 | */ |
| 58 | export function isDOMError(wat: unknown): boolean { |
| 59 | return isBuiltin(wat, 'DOMError'); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Checks whether given value's type is DOMException |
no test coverage detected