Skip to content

Commit 6f5bd61

Browse files
committed
Update eslint to fix an npm dependency conflict
1 parent 47b62eb commit 6f5bd61

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"chai": "^4.1.2",
8181
"codecov": "^3.6.1",
8282
"es-check": "^7.0.0",
83-
"eslint": "^7.0.0",
83+
"eslint": "^8.54.0",
8484
"eslint-config-warp": "^4.0.0",
8585
"fantasy-laws": "^1.0.1",
8686
"jsverify": "^0.8.3",

test/unit/0.predicates.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ test('isFunction', function (){
2929
});
3030

3131
test('isUnsigned', function (){
32-
var is = [1, 2, 99999999999999999999, Infinity];
33-
var xs = [NaN, 0, -0, -1, -99999999999999999, -Infinity, '1', [], {}];
32+
var is = [1, 2, 999999999999999, Infinity];
33+
var xs = [NaN, 0, -0, -1, -999999999999999, -Infinity, '1', [], {}];
3434
is.forEach(function (i){ return expect(util.isUnsigned(i)).to.equal(true) });
3535
xs.forEach(function (x){ return expect(util.isUnsigned(x)).to.equal(false) });
3636
});

0 commit comments

Comments
 (0)