TS-Scribe - v0.6.2
    Preparing search index...

    Function isString

    • Determines whether a given value is a string.

      Parameters

      • value: unknown

        The value to check.

      Returns value is string

      true if the value is of type string, otherwise false.

      isString('hello');      // true
      isString(123); // false
      isString(null); // false
      isString(['a', 'b']); // false