We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repository to produce bug: https://github.com/maple-leaf/esdoc-proposals-plugin-bug-reproduce
source code in repo:
const x = {}; x['d'] = function() { console.log('test'); };
Install npm deps and generate doc by npx esdoc will raise error:
npx esdoc
Cannot read property 'charAt' of undefined
The text was updated successfully, but these errors were encountered:
Having the same issue
Sorry, something went wrong.
Duplicate of #28
Simply change it to if (autoPrivate && doc.name && doc.name.charAt(0) === '_') {
if (autoPrivate && doc.name && doc.name.charAt(0) === '_') {
No branches or pull requests
Repository to produce bug: https://github.com/maple-leaf/esdoc-proposals-plugin-bug-reproduce
source code in repo:
Install npm deps and generate doc by
npx esdoc
will raise error:The text was updated successfully, but these errors were encountered: