Source: exports1.js

// http://usejsdoc.org/tags-exports.html
//CommonJS module
/**
 * A module that says hello!
 * @module hello/world
 */

/** Say hello. */
exports.sayHello = function() {
    return 'Hello world';
};