Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Jun 21, 2024
1 parent 6de6a41 commit 64966a0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions benchmarks/map-filter-reduce.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,11 @@ describe("map-filter-reduce", () => {
});

bench("re-flusso", async () => {
let result = 0;

await pipeline(
fromIterable(initialArray),
map((value) => value * 2),
filter((value) => value % 2 === 0),
sum(),
forEach<number>((sumResult) => {
result = sumResult;
}),
);
});
});

0 comments on commit 64966a0

Please sign in to comment.