Skip to content

Commit 6e4dcd6

Browse files
committed
[Refactor] use call-bound directly
1 parent f88f128 commit 6e4dcd6

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

implementation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var forEach = require('es-abstract/helpers/forEach');
1212
var MAX_SAFE_INTEGER = require('es-abstract/helpers/maxSafeInteger');
1313

1414
var $TypeError = require('es-errors/type');
15-
var callBound = require('call-bind/callBound');
15+
var callBound = require('call-bound');
1616
var isString = require('is-string');
1717

1818
// Check failure of by-index access of string characters (IE < 9) and failure of `0 in boxedString` (Rhino)

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var define = require('define-properties');
44
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
5-
var callBound = require('call-bind/callBound');
5+
var callBound = require('call-bound');
66

77
var implementation = require('./implementation');
88
var getPolyfill = require('./polyfill');

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
},
7272
"dependencies": {
7373
"call-bind": "^1.0.8",
74+
"call-bound": "^1.0.3",
7475
"define-properties": "^1.2.1",
7576
"es-abstract": "^1.23.6",
7677
"es-errors": "^1.3.0",

0 commit comments

Comments
 (0)