Skip to content

Commit

Permalink
[Refactor] use es-object-atoms; update call-bind, `define-propert…
Browse files Browse the repository at this point in the history
…ies`, `es-abstract`
  • Loading branch information
ljharb committed Mar 17, 2024
1 parent d4e2b81 commit f6fe1af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions implementation.js
@@ -1,7 +1,7 @@
'use strict';

var RequireObjectCoercible = require('es-abstract/2023/RequireObjectCoercible');
var ToString = require('es-abstract/2023/ToString');
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
var ToString = require('es-abstract/2024/ToString');
var callBound = require('call-bind/callBound');
var $replace = callBound('String.prototype.replace');

Expand Down
2 changes: 1 addition & 1 deletion index.js
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
7 changes: 4 additions & 3 deletions package.json
Expand Up @@ -46,9 +46,10 @@
"es-shim API"
],
"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.0",
"es-object-atoms": "^1.0.0"
},
"devDependencies": {
"@es-shims/api": "^2.4.2",
Expand Down

0 comments on commit f6fe1af

Please sign in to comment.