(v: any)
| 215 | */ |
| 216 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 217 | export function isString(v: any): v is string { |
| 218 | return typeOf(v) === 'string'; |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Checks if passed argument is boolean |
no test coverage detected