UNPKG
my-sumpul-math-lib
Version:
latest (1.0.0)
1.0.0
A simple library for performing basic math operations
my-sumpul-math-lib
/
index.js
8 lines
(6 loc)
•
134 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.add = function
add
(a,b)
{
return
a+b; }
module
.
exports
.subtract = function
subtract
(a,b)
{
return
a-b; }