jty
    Preparing search index...

    Function isStr

    • Checks if the provided value is a string This is sugar for typeof x === 'string'

      Parameters

      • x: unknown

        possibly a string

      Returns x is string

      isStr('hello') => true
      isStr('') => true
      isStr(123) => false