Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created August 28, 2010 20:39
Show Gist options
  • Save ericelliott/555551 to your computer and use it in GitHub Desktop.
Save ericelliott/555551 to your computer and use it in GitHub Desktop.
/* Works in browsers or in CommonJS environment.
* If you don't have either, just create an exports global before
* this loads and call it a day.
*/
(function (root) {
var myModule = {
"prop1" : "some value",
"prop2" : "some other value"
};
myModule.someMethod = function () {
// Do stuff with props.
};
root.myModule = myModule;
}(exports || window));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment