We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa7716 commit 37db931Copy full SHA for 37db931
lib/loaders.js
@@ -59,11 +59,11 @@ const findPackagePath = pkg =>
59
60
const loadParser = config => new Promise((resolve, reject) => {
61
62
- findPackagePath(`doxdox-parser-${config.parser}`).then(plugin => {
+ findPackagePath(`doxdox-parser-${config.parser}`).then(parser => {
63
64
- if (plugin.length) {
+ if (parser.length) {
65
66
- resolve(require(plugin[0]));
+ resolve(require(parser[0]));
67
68
} else {
69
0 commit comments