1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/jsdoc/plugins/shout.js
2025-08-25 17:48:13 +08:00

16 lines
312 B
JavaScript

/**
* This is just an example.
*
* @module plugins/shout
*/
exports.handlers = {
/**
* Make your descriptions more shoutier.
*/
newDoclet({doclet}) {
if (typeof doclet.description === 'string') {
doclet.description = doclet.description.toUpperCase();
}
}
};