(wat: unknown)
| 78 | * @returns A boolean representing the result. |
| 79 | */ |
| 80 | export function isString(wat: unknown): wat is string { |
| 81 | return isBuiltin(wat, 'String'); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Checks whether given string is parameterized |
no test coverage detected