@szilanor/stream
    Preparing search index...

    Function falsyAsync

    • Returns an AsyncOperationFunction that yields only entries of the source Iterable with falsy value.

      Type Parameters

      • T

        The type of the elements in the source Iterable.

      Returns AsyncOperationFunction<T, T>

      An AsyncOperationFunction that yields only entries of the source Iterable with falsy value.

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