@szilanor/stream
    Preparing search index...

    Function notNullOrWhitespaceAsync

    • Returns an AsyncOperationFunction that yields only the non-null / non-undefined / non-empty entries of the source Iterable.

      Returns AsyncOperationFunction<string | null | undefined, string>

      An AsyncOperationFunction that yields only the non-null / non-undefined / non-empty entries of the source Iterable.

      const result = notNullOrWhitespaceAsync<number>([1, 2, null, undefined, 3]);
      console.log(result); // [1, 2, 3]