documentation/test/fixture/inline-link.input.js
2015-04-15 10:44:53 -07:00

19 lines
357 B
JavaScript

/**
* Adds one to a number
* @param {number} a the input
* @returns {number} the output
*/
function addOne(a) {
return a + 1;
}
/**
* This function returns the number one. Internally, this uses
* {@link addOne} to do the math.
* @param {number} a the input
* @returns {number} numberone
*/
module.exports = function (a) {
return addOne(a);
};