/var/www/greso.tech/server/nsm/node_modules/jsdoc/plugins
NameSizeModeActions
test/-0755rm
commentConvert.js5620644editdlrm
commentsOnly.js6020644editdlrm
escapeHtml.js4640644editdlrm
eventDumper.js25150644editdlrm
markdown.js23510644editdlrm
overloadHelper.js56570644editdlrm
partial.js7310644editdlrm
railsTemplate.js4110644editdlrm
shout.js3120644editdlrm
sourcetag.js15450644editdlrm
summarize.js22240644editdlrm
underscore.js4880644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/jsdoc/plugins/underscore.js (488B)
/** * Removes all symbols that begin with an underscore from the doc output. If * you're using underscores to denote private variables in modules, this * automatically hides them. * * @module plugins/underscore */ exports.handlers = { newDoclet({doclet}) { // Ignore comment blocks for all symbols that begin with underscore if (doclet.name.charAt(0) === '_' || doclet.name.substr(0, 6) === 'this._') { doclet.access = 'private'; } } };