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 3dbe06d commit e503687
Show file tree
Hide file tree
Showing 3 changed files with 518 additions and 691 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"np": "6.5.0",
"nyc": "15.1.0",
"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/extra/closure.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import test from 'ava';
import {closure, enumerate, list, takewhile} from '../../../src';

// https://oeis.org/A006577
const Collatz = (x) => (x % 2 === 1 ? 3 * x + 1 : (x / 2) | 0);
const Collatz = (x) => (x % 2 === 1 ? 3 * x + 1 : Math.floor(x / 2));

const A006577 = [
0,
Expand Down

0 comments on commit e503687

Please sign in to comment.