UNPKG

@electric-sql/d2ts

Version:

D2TS is a TypeScript implementation of Differential Dataflow.

9 lines 234 B
/** * Creates a new stream by piping the input stream through a series of operators */ export function pipe(...operators) { return (stream) => { return stream.pipe(...operators); }; } //# sourceMappingURL=pipe.js.map