(value)
| 27 | * @param {*} value The param to check if it is a string |
| 28 | */ |
| 29 | export function isString(value) { |
| 30 | return typeof value === 'string'; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Checks if `value` is undefined. |
no outgoing calls
no test coverage detected
searching dependent graphs…