feat: works
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
module.exports = {
|
||||
add: function (a, b) {
|
||||
return a + b;
|
||||
},
|
||||
subtract: function (a, b) {
|
||||
return a - b;
|
||||
},
|
||||
multiply: function (a, b) {
|
||||
return a * b;
|
||||
},
|
||||
divide: function (a, b) {
|
||||
return a / b;
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user