@johngw/stream
Version:
Reactive programming tools using the WHATWG Streams API.
21 lines • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.identity = void 0;
/**
* Transforms nothing.
*
* @group Transformers
* @example
* ```
* --a--b--c--d--
*
* identity()
*
* --a--b--c--d--
* ```
*/
function identity() {
return new TransformStream();
}
exports.identity = identity;
//# sourceMappingURL=identity.js.map