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 499e7e9 commit e4bd17f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion implementation.js
Expand Up @@ -2,7 +2,7 @@

var ToIntegerOrInfinity = require('es-abstract/2023/ToIntegerOrInfinity');
var ToLength = require('es-abstract/2023/ToLength');
var ToObject = require('es-abstract/2023/ToObject');
var ToObject = require('es-object-atoms/ToObject');
var SameValueZero = require('es-abstract/2023/SameValueZero');
var $isNaN = require('es-abstract/helpers/isNaN');
var $isFinite = require('es-abstract/helpers/isFinite');
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-object-atoms/RequireObjectCoercible');
var callBind = require('call-bind');
var callBound = require('call-bind/callBound');

Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -52,6 +52,7 @@
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.1",
"is-string": "^1.0.7"
},
Expand Down

0 comments on commit e4bd17f

Please sign in to comment.