vigour-doc
Version:
A collection of tools to help make great docs with minimal effort
15 lines (13 loc) • 448 B
JavaScript
module.exports = exports = function commentFactory (fnName, id) {
return `/**
* @id ${id}
* @function ${fnName}
* ***Oh*** man this *function* does **so** many [things](http://things.com)!!!
* @param {string} text - Words, \`sentences\`, and more*
* @param {number} amount
* @param {boolean} isCool - always \`true\`
* @param {array} things All sorts of things
* @returns {boolean} canMakeYouHappy - usually \`true\`
*/`
}