@eroyeroy/utils - v0.1.0
    Preparing search index...

    Function isFilledString

    • Returns true if the string contains at least one non-whitespace character.

      Parameters

      • str: string

        The input string.

      Returns boolean

      isFilledString("hello") // => true
      isFilledString(" ") // => false
      isFilledString("") // => false