moduleisfunction.js 163 B

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