Skip to content

Commit

Permalink
[Deps] update es-abstract; use call-bind where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 18, 2020
1 parent 1ad4109 commit 11a3a7a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions implementation.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

var IsCallable = require('es-abstract/2019/IsCallable');
var ToObject = require('es-abstract/2019/ToObject');
var ToUint32 = require('es-abstract/2019/ToUint32');
var callBound = require('es-abstract/helpers/callBound');
var IsCallable = require('es-abstract/2020/IsCallable');
var ToObject = require('es-abstract/2020/ToObject');
var ToUint32 = require('es-abstract/2020/ToUint32');
var callBound = require('call-bind/callBound');
var isString = require('is-string');

// Check failure of by-index access of string characters (IE < 9) and failure of `0 in boxedString` (Rhino)
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';

var define = require('define-properties');
var RequireObjectCoercible = require('es-abstract/2019/RequireObjectCoercible');
var callBound = require('es-abstract/helpers/callBound');
var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');
var callBound = require('call-bind/callBound');

var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@
"es-shim API"
],
"dependencies": {
"call-bind": "^1.0.0",
"define-properties": "^1.1.3",
"es-abstract": "^1.17.5",
"es-abstract": "^1.18.0-next.1",
"is-string": "^1.0.5"
},
"devDependencies": {
Expand Down

0 comments on commit 11a3a7a

Please sign in to comment.