Skip to content

Commit

Permalink
😒 chore(dev-deps): Upgrade xo.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Oct 20, 2020
1 parent 4384ab4 commit 63a17c2
Show file tree
Hide file tree
Showing 3 changed files with 308 additions and 407 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"nyc": "15.1.0",
"power-assert": "1.6.1",
"regenerator-runtime": "0.13.7",
"xo": "0.33.1"
"xo": "0.34.1"
},
"files": [
"lib"
Expand Down
2 changes: 1 addition & 1 deletion test/src/FingerTree.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ test('FingerTree', (t) => {
);

const _N = 1000;
const __N = (_N / 2) | 0;
const __N = Math.floor(_N / 2);
const J = from(COUNTER, range(_N));
t.deepEqual(
list(map(list, J.split(gt(__N)))),
Expand Down
Loading

0 comments on commit 63a17c2

Please sign in to comment.