We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Object#hasOwnProperty
1 parent b235fce commit f9a8088Copy full SHA for f9a8088
lib/results.js
@@ -3,6 +3,7 @@ var inherits = require('inherits');
3
var through = require('through');
4
var resumer = require('resumer');
5
var inspect = require('object-inspect');
6
+var hasOwn = Object.prototype.hasOwnProperty;
7
var nextTick = typeof setImmediate !== 'undefined'
8
? setImmediate
9
: process.nextTick
@@ -185,5 +186,5 @@ function getNextTest (results) {
185
186
}
187
188
function has (obj, prop) {
- return Object.prototype.hasOwnProperty.call(obj, prop);
189
+ return hasOwn.call(obj, prop);
190
0 commit comments