Created
October 28, 2016 15:45
-
-
Save boo1ean/cec3f7975f5eb625b5b96e73bef3fba7 to your computer and use it in GitHub Desktop.
This file contains 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
module.exports = { | |
sum: (a, b) => { | |
return a + b; | |
}, | |
sub: (a, b) => { | |
return a - b; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment