Skip to content

Instantly share code, notes, and snippets.

@alexgureev
Created February 16, 2015 19:05
Show Gist options
  • Save alexgureev/763972d28ecee5457bd9 to your computer and use it in GitHub Desktop.
Save alexgureev/763972d28ecee5457bd9 to your computer and use it in GitHub Desktop.
function require(...) {
// ...
function (module, exports) {
// Your module code here
exports = some_func; // re-assigns exports, exports is no longer
// a shortcut, and nothing is exported.
module.exports = some_func; // makes your module export 0
} (module, module.exports);
return module;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment