Skip to content

Commit 63a17c2

Browse files
😒 chore(dev-deps): Upgrade xo.
1 parent 4384ab4 commit 63a17c2

File tree

3 files changed

+308
-407
lines changed

3 files changed

+308
-407
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"nyc": "15.1.0",
102102
"power-assert": "1.6.1",
103103
"regenerator-runtime": "0.13.7",
104-
"xo": "0.33.1"
104+
"xo": "0.34.1"
105105
},
106106
"files": [
107107
"lib"

test/src/FingerTree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ test('FingerTree', (t) => {
175175
);
176176

177177
const _N = 1000;
178-
const __N = (_N / 2) | 0;
178+
const __N = Math.floor(_N / 2);
179179
const J = from(COUNTER, range(_N));
180180
t.deepEqual(
181181
list(map(list, J.split(gt(__N)))),

0 commit comments

Comments
 (0)