File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
var typed ,
12
12
utility ,
13
- isArray ,
14
13
jsdoc ,
15
14
esutils ,
16
15
hasOwnProperty ;
17
16
18
17
esutils = require ( 'esutils' ) ;
19
- isArray = require ( 'isarray' ) ;
20
18
typed = require ( './typed' ) ;
21
19
utility = require ( './utility' ) ;
22
20
839
837
840
838
// array of relevant tags
841
839
if ( options . tags ) {
842
- if ( isArray ( options . tags ) ) {
840
+ if ( Array . isArray ( options . tags ) ) {
843
841
interestingTags = { } ;
844
842
for ( i = 0 , iz = options . tags . length ; i < iz ; i ++ ) {
845
843
if ( typeof options . tags [ i ] === 'string' ) {
Original file line number Diff line number Diff line change 54
54
"betarelease" : " eslint-prerelease beta"
55
55
},
56
56
"dependencies" : {
57
- "esutils" : " ^2.0.2" ,
58
- "isarray" : " ^1.0.0"
57
+ "esutils" : " ^2.0.2"
59
58
}
60
59
}
You can’t perform that action at this time.
0 commit comments