Skip to content

Instantly share code, notes, and snippets.

@dinks
Created November 15, 2014 15:31
Show Gist options
  • Select an option

  • Save dinks/e861c869a85579fc5559 to your computer and use it in GitHub Desktop.

Select an option

Save dinks/e861c869a85579fc5559 to your computer and use it in GitHub Desktop.
Module and Export
var module = {
exports: {}
};
// If you require a module, it's basically wrapped in a function
(function(module, exports) {
exports = function (n) { return n * 1000 };
}(module, module.exports))
console.log(module.exports); // it's still an empty object :(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment