Skip to content

Commit e82c1e8

Browse files
committed
Use has instead of a homegrown version of the same.
1 parent e416a8e commit e82c1e8

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

lib/results.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +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;
6+
var has = require('has');
77
var regexpTest = RegExp.prototype.test;
88
var yamlIndicators = /\:|\-|\?/;
99
var nextTick = typeof setImmediate !== 'undefined'
@@ -186,10 +186,6 @@ function getNextTest (results) {
186186
} while (results.tests.length !== 0)
187187
}
188188

189-
function has (obj, prop) {
190-
return hasOwn.call(obj, prop);
191-
}
192-
193189
function invalidYaml (str) {
194190
return regexpTest.call(yamlIndicators, str);
195191
}

lib/test.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ var defined = require('defined');
33
var path = require('path');
44
var inherits = require('inherits');
55
var EventEmitter = require('events').EventEmitter;
6+
var has = require('has');
67

78
module.exports = Test;
89

@@ -482,11 +483,6 @@ Test.prototype.doesNotThrow = function (fn, expected, msg, extra) {
482483
});
483484
};
484485

485-
var hasOwn = Object.prototype.hasOwnProperty;
486-
function has (obj, prop) {
487-
return hasOwn.call(obj, prop);
488-
}
489-
490486
Test.skip = function (name_, _opts, _cb) {
491487
var args = getTestArgs.apply(null, arguments);
492488
args.opts.skip = true;

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"deep-equal": "~1.0.0",
1313
"defined": "~0.0.0",
1414
"glob": "~5.0.3",
15+
"has": "~1.0.1",
1516
"inherits": "~2.0.1",
1617
"object-inspect": "~1.0.0",
1718
"resumer": "~0.0.0",

0 commit comments

Comments
 (0)