Skip to content

Commit 3883cb4

Browse files
committedMar 26, 2016
Merge pull request #396 from btd/master
Fix when you want to document Object.prototype's methods
2 parents b66478d + 5b51891 commit 3883cb4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎lib/hierarchy.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
'use strict';
22

3+
var hasOwnProperty = Object.prototype.hasOwnProperty;
4+
35
/**
46
* @param {Array<Object>} comments an array of parsed comments
57
* @returns {Array<Object>} nested comments, with only root comments
@@ -9,8 +11,8 @@ module.exports = function (comments) {
911
var id = 0,
1012
root = {
1113
members: {
12-
instance: {},
13-
static: {}
14+
instance: Object.create(null),
15+
static: Object.create(null)
1416
}
1517
};
1618

@@ -44,12 +46,12 @@ module.exports = function (comments) {
4446
scope = segment[0],
4547
name = segment[1];
4648

47-
if (!node.members[scope].hasOwnProperty(name)) {
49+
if (!hasOwnProperty.call(node.members[scope], name)) {
4850
node.members[scope][name] = {
4951
comments: [],
5052
members: {
51-
instance: {},
52-
static: {}
53+
instance: Object.create(null),
54+
static: Object.create(null)
5355
}
5456
};
5557
}

0 commit comments

Comments
 (0)
Please sign in to comment.