Skip to content

Instantly share code, notes, and snippets.

@elyosemite
Created March 7, 2018 02:23
Show Gist options
  • Select an option

  • Save elyosemite/35c32b674716d4c4c7b3dfbde7541503 to your computer and use it in GitHub Desktop.

Select an option

Save elyosemite/35c32b674716d4c4c7b3dfbde7541503 to your computer and use it in GitHub Desktop.
function myModule() {
this.hello = function() {
return 'Hello';
}
this.goodbye = function() {
return 'goodbye';
}
}
module.exports = myModule;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment