Skip to content

Commit

Permalink
[Deps] update call-bind, define-properties, es-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 20, 2024
1 parent 020b529 commit 4c68200
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions implementation.js
@@ -1,12 +1,12 @@
'use strict';

var Call = require('es-abstract/2023/Call');
var Get = require('es-abstract/2023/Get');
var HasProperty = require('es-abstract/2023/HasProperty');
var IsCallable = require('es-abstract/2023/IsCallable');
var LengthOfArrayLike = require('es-abstract/2023/LengthOfArrayLike');
var Call = require('es-abstract/2024/Call');
var Get = require('es-abstract/2024/Get');
var HasProperty = require('es-abstract/2024/HasProperty');
var IsCallable = require('es-abstract/2024/IsCallable');
var LengthOfArrayLike = require('es-abstract/2024/LengthOfArrayLike');
var ToObject = require('es-object-atoms/ToObject');
var ToString = require('es-abstract/2023/ToString');
var ToString = require('es-abstract/2024/ToString');

var callBound = require('call-bind/callBound');
var isString = require('is-string');
Expand Down
2 changes: 1 addition & 1 deletion index.js
@@ -1,7 +1,7 @@
'use strict';

var define = require('define-properties');
var RequireObjectCoercible = require('es-abstract/2023/RequireObjectCoercible');
var RequireObjectCoercible = require('es-abstract/2024/RequireObjectCoercible');
var callBind = require('call-bind');
var callBound = require('call-bind/callBound');

Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -47,9 +47,9 @@
"node": ">= 0.4"
},
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-array-method-boxes-properly": "^1.0.0",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
Expand Down

0 comments on commit 4c68200

Please sign in to comment.