Skip to content

Commit f9a8088

Browse files
committed
Cache Object#hasOwnProperty in case clients break it as part of tests
Obviates inspect-js/object-inspect#2.
1 parent b235fce commit f9a8088

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/results.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ var inherits = require('inherits');
33
var through = require('through');
44
var resumer = require('resumer');
55
var inspect = require('object-inspect');
6+
var hasOwn = Object.prototype.hasOwnProperty;
67
var nextTick = typeof setImmediate !== 'undefined'
78
? setImmediate
89
: process.nextTick
@@ -185,5 +186,5 @@ function getNextTest (results) {
185186
}
186187

187188
function has (obj, prop) {
188-
return Object.prototype.hasOwnProperty.call(obj, prop);
189+
return hasOwn.call(obj, prop);
189190
}

0 commit comments

Comments
 (0)