/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/commentsOnly.js (602B)
/** * Remove everything in a file except JSDoc-style comments. By enabling this plugin, you can * document source files that are not valid JavaScript (including source files for other languages). * @module plugins/commentsOnly */ exports.handlers = { beforeParse(e) { // a JSDoc comment looks like: /**[one or more chars]*/ const comments = e.source.match(/\/\*\*[\s\S]+?\*\//g); if (comments) { e.source = comments.join('\n\n'); } else { e.source = ''; // If file has no comments, parser should still receive no code } } };