Skip to content

Commit 3eda12c

Browse files
committed
Cache Object.prototype.hasOwnProperty here also.
Per f9a8088 / #163
1 parent 670e5f7 commit 3eda12c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,9 @@ Test.prototype.doesNotThrow = function (fn, expected, msg, extra) {
482482
});
483483
};
484484

485+
var hasOwn = Object.prototype.hasOwnProperty;
485486
function has (obj, prop) {
486-
return Object.prototype.hasOwnProperty.call(obj, prop);
487+
return hasOwn.call(obj, prop);
487488
}
488489

489490
Test.skip = function (name_, _opts, _cb) {

0 commit comments

Comments
 (0)