UNPKG

@electric-sql/d2mini

Version:

D2Mini is a minimal implementation of Differential Dataflow for performing in-memory incremental view maintenance.

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