Skip to content

Instantly share code, notes, and snippets.

@bryanforbes
Created September 5, 2014 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanforbes/30da45dd327851dbb21e to your computer and use it in GitHub Desktop.
Save bryanforbes/30da45dd327851dbb21e to your computer and use it in GitHub Desktop.
/**
* @module my/module2
*/
define([], function () {
/**
* @alias module:my/module2
*/
var module2 = {
/**
* A description of the following function
*
* @param {string} arg1 - A description of this argument
* @returns {string}
*/
someFunction: function (arg1) {
return '';
}
};
return module2;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment