documentation/test/fixture/property.input.js
2015-03-11 12:48:05 -07:00

11 lines
170 B
JavaScript

module.exports = {
/**
* This function returns the number one.
* @return {Number} numberone
*/
one: function () {
// this returns 1
return 1;
}
};