@szilanor/stream
    Preparing search index...

    Function noopAsync

    • Simply returns every entry from the source Iterable.

      Type Parameters

      • T

        The type of the elements in the source Iterable.

      Returns AsyncOperationFunction<T, T>

      An AsyncOperationFunction that simply returns every entry from the source Iterable.

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