File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
+ var hasOwnProperty = Object . prototype . hasOwnProperty ;
4
+
3
5
/**
4
6
* @param {Array<Object> } comments an array of parsed comments
5
7
* @returns {Array<Object> } nested comments, with only root comments
@@ -9,8 +11,8 @@ module.exports = function (comments) {
9
11
var id = 0 ,
10
12
root = {
11
13
members : {
12
- instance : { } ,
13
- static : { }
14
+ instance : Object . create ( null ) ,
15
+ static : Object . create ( null )
14
16
}
15
17
} ;
16
18
@@ -44,12 +46,12 @@ module.exports = function (comments) {
44
46
scope = segment [ 0 ] ,
45
47
name = segment [ 1 ] ;
46
48
47
- if ( ! node . members [ scope ] . hasOwnProperty ( name ) ) {
49
+ if ( ! hasOwnProperty . call ( node . members [ scope ] , name ) ) {
48
50
node . members [ scope ] [ name ] = {
49
51
comments : [ ] ,
50
52
members : {
51
- instance : { } ,
52
- static : { }
53
+ instance : Object . create ( null ) ,
54
+ static : Object . create ( null )
53
55
}
54
56
} ;
55
57
}
You can’t perform that action at this time.
0 commit comments