Checks if the provided value is a string This is sugar for typeof x === 'string'
typeof x === 'string'
possibly a string
isStr('hello') => trueisStr('') => trueisStr(123) => false Copy
isStr('hello') => trueisStr('') => trueisStr(123) => false
Checks if the provided value is a string This is sugar for
typeof x === 'string'