Skip to content

Commit

Permalink
[Deps] update define-properties, es-abstract, `es-create-array-it…
Browse files Browse the repository at this point in the history
…erator`
  • Loading branch information
ljharb committed Aug 29, 2023
1 parent e636e20 commit ea1728c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion implementation.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var CreateArrayIterator = require('es-create-array-iterator');
var ToObject = require('es-abstract/2022/ToObject');
var ToObject = require('es-abstract/2023/ToObject');

module.exports = function entries() {
var O = ToObject(this);
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
Expand Down
2 changes: 1 addition & 1 deletion index.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import callBind from 'call-bind';
import RequireObjectCoercible from 'es-abstract/2022/RequireObjectCoercible.js';
import RequireObjectCoercible from 'es-abstract/2023/RequireObjectCoercible.js';

import getPolyfill from 'array.prototype.entries/polyfill';

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
},
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.20.4",
"es-create-array-iterator": "^1.0.3",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"es-create-array-iterator": "^1.0.6",
"es-shim-unscopables": "^1.0.0"
},
"testling": {
Expand Down
2 changes: 1 addition & 1 deletion polyfill.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var IsCallable = require('es-abstract/2022/IsCallable');
var IsCallable = require('es-abstract/2023/IsCallable');

var implementation = require('./implementation');

Expand Down

0 comments on commit ea1728c

Please sign in to comment.