Skip to content

Instantly share code, notes, and snippets.

@zbabtkis
Last active December 17, 2015 16:29
Show Gist options
  • Save zbabtkis/5639191 to your computer and use it in GitHub Desktop.
Save zbabtkis/5639191 to your computer and use it in GitHub Desktop.
Simple module function.
function module(require, func) {
for(var i = 0; i < require.length; i++) {
require[i] = window[require[i]];
}
exports[func].apply(this, require);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment