Created
March 7, 2018 02:23
-
-
Save elyosemite/35c32b674716d4c4c7b3dfbde7541503 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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