@szilanor/stream
    Preparing search index...

    Function notNullOrWhitespace

    • Returns a Stream that yields elements that are not null, undefined, or whitespace.

      Returns OperationFunction<undefined | null | string, string>

      Operation that yields elements that are not null, undefined, or whitespace.

      const result = notNullOrWhitespace<string>()(["", "a", null, "b", undefined, "c", " "]);
      console.log([...result]); // ["a", "b", "c"]