Skip to content

Commit 6ecc842

Browse files
author
James Halliday
committed
hats, has module
1 parent 17894ca commit 6ecc842

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

lib/test.js

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

89
module.exports = Test;
910

@@ -456,10 +457,6 @@ Test.prototype.doesNotThrow = function (fn, expected, msg, extra) {
456457
});
457458
};
458459

459-
function has (obj, prop) {
460-
return Object.prototype.hasOwnProperty.call(obj, prop);
461-
}
462-
463460
Test.skip = function (name_, _opts, _cb) {
464461
var args = getTestArgs.apply(null, arguments);
465462
args.opts.skip = true;

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
"dependencies": {
1212
"deep-equal": "~0.2.0",
1313
"defined": "~0.0.0",
14-
"glob": "~3.2.9",
15-
"inherits": "~2.0.1",
16-
"object-inspect": "~0.4.0",
14+
"glob": "^3.2.9",
15+
"inherits": "^2.0.1",
16+
"object-inspect": "^1.0.0",
1717
"resumer": "~0.0.0",
18-
"through": "~2.3.4"
18+
"through": "^2.3.4",
19+
"has": "~0.0.1"
1920
},
2021
"devDependencies": {
2122
"tap" : "~0.4.8",

0 commit comments

Comments
 (0)