UNPKG

110 BJavaScriptView Raw
1// function add is exported and is easy to test
2function add(a, b) {
3 return a + b;
4}
5
6module.exports = add;