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
36 lines (34 loc) • 815 B
text/typescript
import { convolves } from "./convolves";
import sflow from "./index";
it("convolve 1 in pipeline", async () => {
expect(await sflow([1, 2, 3, 4]).convolve(1).toArray()).toEqual([
[],
[],
[],
[],
]);
});
it("convolve 1", async () => {
expect(await sflow([1, 2, 3, 4]).through(convolves(1)).toArray()).toEqual([
[],
[],
[],
[],
]);
});
it("convolve 2", async () => {
expect(await sflow([1, 2, 3, 4]).through(convolves(2)).toArray()).toEqual([
[],
[],
[],
]);
});
it("convolve 3", async () => {
expect(await sflow([1, 2, 3, 4]).through(convolves(3)).toArray()).toEqual([
[],
[],
]);
});
it("convolve smaller array", async () => {
expect(await sflow([1, 2, 3, 4]).through(convolves(5)).toArray()).toEqual([]);
});