Created
March 20, 2023 13:47
-
-
Save bennycode/70d848665ece8877c41f15edbd8ed2c1 to your computer and use it in GitHub Desktop.
CommonJS
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
function add(a, b) { | |
return a + b; | |
} | |
exports.add = add; | |
function substract(a, b) { | |
return a - b; | |
} | |
exports.substract = substract; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment