Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created October 28, 2016 15:45
Show Gist options
  • Save boo1ean/cec3f7975f5eb625b5b96e73bef3fba7 to your computer and use it in GitHub Desktop.
Save boo1ean/cec3f7975f5eb625b5b96e73bef3fba7 to your computer and use it in GitHub Desktop.
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