Skip to content

isString

isString(value) → boolean · Type

Returns true if the value is a string.

  • value (required): the value to test
utlx
isString("hello")                        // true
isString(42)                             // false
isString(null)                           // false

Released under AGPL-3.0.