Skip to content

Commit 03a5f43

Browse files
committed
remove parens in single param arrow function
1 parent 6c0e643 commit 03a5f43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/zip.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ describe('zip', () => {
7272
expect(
7373
Seq.of(1, 2, 3).zipAll(Seq.of(4)).toArray(),
7474
).toEqual(
75-
[[1, 4],[2, undefined],[3, undefined]],
75+
[[1, 4], [2, undefined], [3, undefined]],
7676
);
7777
});
7878

7979
check.it('is always the size of the longest sequence',
80-
[gen.notEmpty(gen.array(gen.posInt))], (lengths) => {
80+
[gen.notEmpty(gen.array(gen.posInt))], lengths => {
8181
const ranges = lengths.map(l => Range(0, l));
8282
const first = ranges.shift();
8383
const zipped = first.zipAll.apply(first, ranges);

0 commit comments

Comments
 (0)