UNPKG

@johngw/stream

Version:

Reactive programming tools using the WHATWG Streams API.

17 lines 240 B
/** * Transforms nothing. * * @group Transformers * @example * ``` * --a--b--c--d-- * * identity() * * --a--b--c--d-- * ``` */ export function identity() { return new TransformStream(); } //# sourceMappingURL=identity.js.map