Returns an OperationFunction that yields the same elements as the source.
Type of items in the source.
An OperationFunction that yields the same elements as the source.
const result = noop<number>()([1, 2, 3]);console.log([...result]); // [1, 2, 3] Copy
const result = noop<number>()([1, 2, 3]);console.log([...result]); // [1, 2, 3]
Returns an OperationFunction that yields the same elements as the source.