UNPKG
basic-arithmatic-operations
Version:
latest (1.0.1)
1.0.1
1.0.0
Basic Arithmatic operations
basic-arithmatic-operations
/
index.js
6 lines
•
125 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
= {
add
:
(
a,b
) =>
a+b,
substract
:
(
a,b
) =>
a-b,
multiply
:
(
a,b
) =>
a*b,
divide
:
(
a,b
) =>
a/b }