Skip to content

Instantly share code, notes, and snippets.

@kurtharriger
Created November 26, 2013 22:23
Show Gist options
  • Select an option

  • Save kurtharriger/7667396 to your computer and use it in GitHub Desktop.

Select an option

Save kurtharriger/7667396 to your computer and use it in GitHub Desktop.
js module template
(function(exports){
// your code goes here
exports.test = function(){
return 'hello world'
};
})(typeof exports === 'undefined'? this['mymodule']={}: exports);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment