We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c600f commit 9efb6caCopy full SHA for 9efb6ca
lib/doctrine.js
@@ -10,13 +10,11 @@
10
11
var typed,
12
utility,
13
- isArray,
14
jsdoc,
15
esutils,
16
hasOwnProperty;
17
18
esutils = require('esutils');
19
- isArray = require('isarray');
20
typed = require('./typed');
21
utility = require('./utility');
22
@@ -839,7 +837,7 @@
839
837
840
838
// array of relevant tags
841
if (options.tags) {
842
- if (isArray(options.tags)) {
+ if (Array.isArray(options.tags)) {
843
interestingTags = { };
844
for (i = 0, iz = options.tags.length; i < iz; i++) {
845
if (typeof options.tags[i] === 'string') {
package.json
@@ -54,7 +54,6 @@
54
"betarelease": "eslint-prerelease beta"
55
},
56
"dependencies": {
57
- "esutils": "^2.0.2",
58
- "isarray": "^1.0.0"
+ "esutils": "^2.0.2"
59
}
60
0 commit comments