Created
August 28, 2010 20:39
-
-
Save ericelliott/555551 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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