UNPKG
calci5f6
Version:
latest (0.1.3)
0.1.3
0.1.2
github.com/hemanthkumarsangam/calci5f6
hemanthkumarsangam/calci5f6
calci5f6
/
calci5f6.js
16 lines
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function
add
(
x, y
) {
return
x + y; };
function
sub
(
x, y
) {
return
x - y; };
function
mult
(
x, y
) {
return
x * y; };
function
div
(
x, y
) {
return
x / y; };
exports
.
add
=add;
exports
.
sub
=sub;
exports
.
mult
=mult;
exports
.
div
=div;