Source: exports2.js

// http://usejsdoc.org/tags-exports.html
//Node.js module
/**
 * A module that shouts hello!
 * @module hello/world2
 */

/** SAY HELLO. */
module.exports = function() {
    return "HELLO WORLD";
};