Skip to content

Instantly share code, notes, and snippets.

@abishekrsrikaanth
Created January 8, 2014 02:41
Show Gist options
  • Save abishekrsrikaanth/8310887 to your computer and use it in GitHub Desktop.
Save abishekrsrikaanth/8310887 to your computer and use it in GitHub Desktop.
Node JS Module definition
var myLibrary = (function(){
this.PublicFunction = function(){
};
this.PublicFunction = function(){
};
});
module.exports = function(){
return new myLibrary();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment