Code coverage report for master/plugins/shout.js

Statements: 100% (3 / 3)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » master/plugins/ » shout.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18              1         4 2        
/**
    @overview This is just an example.
    @module plugins/shout
    @author Michael Mathews <micmath@gmail.com>
 */
'use strict';
 
exports.handlers = {
    /**
        Make your descriptions more shoutier.
     */
    newDoclet: function(e) {
        if (typeof e.doclet.description === 'string') {
            e.doclet.description = e.doclet.description.toUpperCase();
        }
    }
};