shout.js 312 B

123456789101112131415
  1. /**
  2. * This is just an example.
  3. *
  4. * @module plugins/shout
  5. */
  6. exports.handlers = {
  7. /**
  8. * Make your descriptions more shoutier.
  9. */
  10. newDoclet({doclet}) {
  11. if (typeof doclet.description === 'string') {
  12. doclet.description = doclet.description.toUpperCase();
  13. }
  14. }
  15. };