Skip to content

Commit

Permalink
[Refactor] use es-object-atoms where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 20, 2024
1 parent 426d41a commit 7ae894c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion implementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var Get = require('es-abstract/2023/Get');
var LengthOfArrayLike = require('es-abstract/2023/LengthOfArrayLike');
var ToIntegerOrInfinity = require('es-abstract/2023/ToIntegerOrInfinity');
var ToObject = require('es-abstract/2023/ToObject');
var ToObject = require('es-object-atoms/ToObject');
var ToString = require('es-abstract/2023/ToString');

module.exports = function at(index) {
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 callBind = require('call-bind');
var define = require('define-properties');
var RequireObjectCoercible = require('es-abstract/2023/RequireObjectCoercible');
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');

var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"es-object-atoms": "^1.0.0",
"es-shim-unscopables": "^1.0.0"
},
"auto-changelog": {
Expand Down

0 comments on commit 7ae894c

Please sign in to comment.