Skip to content

Commit 88d567c

Browse files
committed
Use function-bind to ensure we're robust against modification of Function#call
1 parent e82c1e8 commit 88d567c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/results.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ var inherits = require('inherits');
33
var through = require('through');
44
var resumer = require('resumer');
55
var inspect = require('object-inspect');
6+
var bind = require('function-bind');
67
var has = require('has');
7-
var regexpTest = RegExp.prototype.test;
8+
var regexpTest = bind.call(Function.call, RegExp.prototype.test);
89
var yamlIndicators = /\:|\-|\?/;
910
var nextTick = typeof setImmediate !== 'undefined'
1011
? setImmediate
@@ -187,5 +188,5 @@ function getNextTest (results) {
187188
}
188189

189190
function invalidYaml (str) {
190-
return regexpTest.call(yamlIndicators, str);
191+
return regexpTest(yamlIndicators, str);
191192
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"deep-equal": "~1.0.0",
1313
"defined": "~0.0.0",
14+
"function-bind": "~1.0.2",
1415
"glob": "~5.0.3",
1516
"has": "~1.0.1",
1617
"inherits": "~2.0.1",

0 commit comments

Comments
 (0)