📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 06:18:08
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
jsdoc
/
plugins
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/jsdoc/plugins
🔄 Refresh
✏️
Editing: underscore.js
Writable
/** * 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'; } } };
💾 Save Changes
❌ Cancel