(wat: unknown)
| 151 | * @returns A boolean representing the result. |
| 152 | */ |
| 153 | export function isRegExp(wat: unknown): wat is RegExp { |
| 154 | return isBuiltin(wat, 'RegExp'); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Checks whether given value has a then function. |
no test coverage detected