Skip to content

Commit

Permalink
[Dev Deps] update make-arrow-function, tape
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 3, 2020
1 parent b9069ac commit 920a682
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -72,12 +72,12 @@
"functions-have-names": "^1.2.1",
"has-strict-mode": "^1.0.0",
"in-publish": "^2.0.0",
"make-arrow-function": "^1.1.0",
"make-arrow-function": "^1.2.0",
"nyc": "^10.3.2",
"object-is": "^1.0.2",
"object.fromentries": "^2.0.2",
"safe-publish-latest": "^1.1.4",
"tape": "^5.0.0-next.4"
"tape": "^5.0.0-next.5"
},
"testling": {
"files": "test/index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/es5.js
Expand Up @@ -768,7 +768,7 @@ test('TimeClip', function (t) {
t.ok(is(ES.TimeClip(-8.64e15 - 1), NaN), '-8.64e15 is the largest magnitude considered "finite"');

forEach(v.zeroes.concat([-10, 10, +new Date()]), function (time) {
t.equal(ES.TimeClip(time), time, debug(time) + ' is a time of ' + debug(time));
t.looseEqual(ES.TimeClip(time), time, debug(time) + ' is a time of ' + debug(time));
});

t.end();
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
Expand Up @@ -3253,7 +3253,7 @@ var es2015 = function ES2015(ES, ops, expectedMissing, skips) {
t.ok(is(ES.TimeClip(-8.64e15 - 1), NaN), '-8.64e15 is the largest magnitude considered "finite"');

forEach(v.zeroes.concat([-10, 10, +new Date()]), function (time) {
t.equal(ES.TimeClip(time), time, debug(time) + ' is a time of ' + debug(time));
t.looseEqual(ES.TimeClip(time), time, debug(time) + ' is a time of ' + debug(time));
});

t.end();
Expand Down

0 comments on commit 920a682

Please sign in to comment.