UNPKG
5d4-msd1
Version:
latest (0.1.1)
0.1.1
github.com/Nani7532/5d4-msd1
Nani7532/5d4-msd1
5d4-msd1
/
calc.js
15 lines
(12 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exports
.
add
=
function
(
x, y
){
return
x + y; };
exports
.
sub
=
function
(
x, y
){
return
x - y; };
exports
.
mult
=
function
(
x, y
){
return
x * y; };
exports
.
div
=
function
(
x, y
){
return
x / y; };