8 lines
81 B
JavaScript

function add(a, b) {
return a + b
}
module.exports =
{
add
}