UNPKG

@johngw/stream

Version:

Reactive programming tools using the WHATWG Streams API.

15 lines 265 B
/** * Transforms nothing. * * @group Transformers * @example * ``` * --a--b--c--d-- * * identity() * * --a--b--c--d-- * ``` */ export declare function identity<T>(): import("node:stream/web").TransformStream<T, T>; //# sourceMappingURL=identity.d.ts.map