(wat: unknown)
| 67 | * @returns A boolean representing the result. |
| 68 | */ |
| 69 | export function isDOMException(wat: unknown): boolean { |
| 70 | return isBuiltin(wat, 'DOMException'); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Checks whether given value's type is a string |
no test coverage detected