MaketRandevu/rsc/scripts/jsdoc/plugins/shout.js
2013-07-02 17:20:39 +00:00

16 lines
No EOL
379 B
JavaScript

/**
@overview This is just an example.
@module plugins/shout
@author Michael Mathews <micmath@gmail.com>
*/
exports.handlers = {
/**
Make your descriptions more shoutier.
*/
newDoclet: function(e) {
if (typeof e.doclet.description === 'string') {
e.doclet.description = e.doclet.description.toUpperCase();
}
}
};