File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ var inherits = require('inherits');
3
3
var through = require ( 'through' ) ;
4
4
var resumer = require ( 'resumer' ) ;
5
5
var inspect = require ( 'object-inspect' ) ;
6
+ var bind = require ( 'function-bind' ) ;
6
7
var has = require ( 'has' ) ;
7
- var regexpTest = RegExp . prototype . test ;
8
+ var regexpTest = bind . call ( Function . call , RegExp . prototype . test ) ;
8
9
var yamlIndicators = / \: | \- | \? / ;
9
10
var nextTick = typeof setImmediate !== 'undefined'
10
11
? setImmediate
@@ -187,5 +188,5 @@ function getNextTest (results) {
187
188
}
188
189
189
190
function invalidYaml ( str ) {
190
- return regexpTest . call ( yamlIndicators , str ) ;
191
+ return regexpTest ( yamlIndicators , str ) ;
191
192
}
Original file line number Diff line number Diff line change 11
11
"dependencies" : {
12
12
"deep-equal" : " ~1.0.0" ,
13
13
"defined" : " ~0.0.0" ,
14
+ "function-bind" : " ~1.0.2" ,
14
15
"glob" : " ~5.0.3" ,
15
16
"has" : " ~1.0.1" ,
16
17
"inherits" : " ~2.0.1" ,
You can’t perform that action at this time.
0 commit comments