Skip to content

Commit

Permalink
[Deps] update define-properties, es-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Aug 28, 2023
1 parent 8b04da7 commit 3ca42ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions implementation.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var IsCallable = require('es-abstract/2022/IsCallable');
var HasOwnProperty = require('es-abstract/2022/HasOwnProperty');
var IsCallable = require('es-abstract/2023/IsCallable');
var HasOwnProperty = require('es-abstract/2023/HasOwnProperty');
var functionsHaveNames = require('functions-have-names')();
var callBound = require('call-bind/callBound');
var $functionToString = callBound('Function.prototype.toString');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
],
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.21.1",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"functions-have-names": "^1.2.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var functionsHaveNames = require('functions-have-names')();
var arrows = require('make-arrow-function').list();
var generators = require('make-generator-function')();
var asyncs = require('make-async-function').list();
var IsCallable = require('es-abstract/2022/IsCallable');
var IsCallable = require('es-abstract/2023/IsCallable');
var forEach = require('for-each');

var foo = Object(function foo() {});
Expand Down

0 comments on commit 3ca42ef

Please sign in to comment.