File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 44
44
"devDependencies" : {
45
45
"@es-shims/api" : " ^2.5.1" ,
46
46
"@ljharb/eslint-config" : " ^21.1.1" ,
47
+ "call-bind" : " ^1.0.7" ,
47
48
"define-properties" : " ^1.2.1" ,
48
49
"eslint" : " =8.8.0" ,
49
50
"function-bind" : " ^1.1.2" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ codePointAt.shim();
5
5
6
6
var test = require ( 'tape' ) ;
7
7
var defineProperties = require ( 'define-properties' ) ;
8
- var bind = require ( 'function -bind' ) ;
8
+ var callBind = require ( 'call -bind' ) ;
9
9
var isEnumerable = Object . prototype . propertyIsEnumerable ;
10
10
var functionsHaveNames = require ( 'functions-have-names' ) ( ) ;
11
11
@@ -24,7 +24,7 @@ test('shimmed', function (t) {
24
24
et . end ( ) ;
25
25
} ) ;
26
26
27
- runTests ( bind . call ( Function . call , String . prototype . codePointAt ) , t ) ;
27
+ runTests ( callBind ( String . prototype . codePointAt ) , t ) ;
28
28
29
29
t . end ( ) ;
30
30
} ) ;
You can’t perform that action at this time.
0 commit comments