Skip to content

Instantly share code, notes, and snippets.

@fitzgen
Created May 2, 2011 04:22
Show Gist options
  • Save fitzgen/951178 to your computer and use it in GitHub Desktop.
Save fitzgen/951178 to your computer and use it in GitHub Desktop.
AMD/CommonJS/Browser all around compatibility boiler plate
(typeof define === "function"
? define
: function (_, f) {
if ( typeof exports === "object" ) {
f(exports);
} else {
f(this);
}
})(["exports"], function (exports) {
// YOUR CODE HERE
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment