Skip to content

Commit 2030c83

Browse files
committed
style: apply code style
1 parent f7ab74b commit 2030c83

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ import {
4040
prepend,
4141
product,
4242
remove,
43-
removeFirst, reverse,
43+
removeFirst,
44+
reverse,
4445
scan,
4546
scan1,
4647
scanRight,
@@ -91,8 +92,8 @@ test("empty", t => {
9192
test("reverse", t => {
9293
const a = [1, 2, 4, 3];
9394
t.deepEqual(reverse(a), [3, 4, 2, 1]);
94-
t.deepEqual(a, [1, 2, 4, 3]) // Ensure original array is untouched.
95-
})
95+
t.deepEqual(a, [1, 2, 4, 3]); // Ensure original array is untouched.
96+
});
9697

9798
test("slice", t => {
9899
t.deepEqual(slice([1, 2, 3, 4], 1), [2, 3, 4]);

0 commit comments

Comments
 (0)