6 lines
68 B
JavaScript
6 lines
68 B
JavaScript
|
|
function add(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
module.exports = { add }; |