mirror of
https://github.com/jsdoc/jsdoc.git
synced 2026-02-01 16:45:41 +00:00
11 lines
163 B
JavaScript
11 lines
163 B
JavaScript
/**
|
|
* This is a module called foo.
|
|
* @module foo
|
|
*/
|
|
|
|
/**
|
|
* The module exports a single function.
|
|
* @param {string} bar
|
|
*/
|
|
module.exports = function(bar) {};
|