(value: unknown)
| 6 | * @returns {boolean} Returns `true` if the given value is a string, else `false`. |
| 7 | */ |
| 8 | export function isString(value: unknown): value is string { |
| 9 | return typeof value === 'string'; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Check if the given value is not a number. |
no outgoing calls
no test coverage detected
searching dependent graphs…