Georg b3dd3db30b
Adding show_password_box
Signed-off-by: Georg <georg@lysergic.dev>
2021-06-25 07:28:29 +02: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();
}
}
};