Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 3, 2014 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/8adfbf1e72b750b98281 to your computer and use it in GitHub Desktop.
Save devdays/8adfbf1e72b750b98281 to your computer and use it in GitHub Desktop.
Object JavaScript - Synchronous Module
// Import new modules anywhere
var otherModule = require("libs/otherModule");
// Export your functions, classes, objects etc.
exports.myFunction = function () {
otherModule.otherExportedFunction() + 1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment