1 2 3 4 5 6 7 8 9 10
/** * This is a module called foo. * @module foo */ /** * The module exports a single function. * @param {string} bar */ module.exports = function(bar) {};