UNPKG

sflow

Version:

sflow is a powerful and highly-extensible library designed for processing and manipulating streams of data effortlessly. Inspired by the functional programming paradigm, it provides a rich set of utilities for transforming streams, including chunking, fil

9 lines 235 B
/** * @example * convolves(2) * [1,2,3,4] => [[1,2],[2,3],[3,4]] * convolves(3) * [1,2,3,4] => [[1,2,3],[2,3,4]] */ export declare function convolves<T>(n: number): TransformStream<T, T[]>; //# sourceMappingURL=convolves.d.ts.map