UNPKG
slm-helper
Version:
latest (1.0.0)
1.0.0
A simple library to add two numbers
slm-helper
/
index.js
5 lines
(4 loc)
•
65 B
JavaScript
View Raw
1
2
3
4
5
function
add
(a, b)
{
return
a + b; }
module
.
exports
= add;