Skip to content

Instantly share code, notes, and snippets.

@Qolzam
Created May 28, 2018 04:05
Show Gist options
  • Save Qolzam/3df46e072ce3a9a69159b6e444f769d0 to your computer and use it in GitHub Desktop.
Save Qolzam/3df46e072ce3a9a69159b6e444f769d0 to your computer and use it in GitHub Desktop.
module1 export by common js
function module1() {
this.hello = function() {
return 'hello!';
}
this.world = function() {
return 'world!';
}
}
module.exports = module1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment