Skip to content

Instantly share code, notes, and snippets.

@bendrucker
Created May 28, 2014 23:09
Show Gist options
  • Save bendrucker/315c10731ad6e4532caf to your computer and use it in GitHub Desktop.
Save bendrucker/315c10731ad6e4532caf to your computer and use it in GitHub Desktop.
module config pattern
var LibraryCtor = function () {
};
var libraryFactory = function (config) {
return new LibraryCtor(config);
};
libraryFactory.LibraryCtor = LibraryCtor;
module.exports = libraryFactory;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment