@szilanor/stream
    Preparing search index...

    Function noop

    • Returns a Stream that yields the same elements as the source.

      Type Parameters

      • T

        Type of items in the source.

      Returns OperationFunction<T, T>

      Operation that yields the same elements as the source.

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