UNPKG
mepcocalc
Version:
latest (1.0.0)
1.0.0
This is node demo module to publish in npm repository
mepcocalc
/
calc.js
16 lines
(12 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
exports
.
sqr
=
function
(
x
) {
return
x*x; };
exports
.
add
=
function
(
x,y
) {
return
x+y; };
exports
.
sub
=
function
(
x,y
) {
return
x-y; };
exports
.
mul
=
function
(
x,y
) {
return
x*y; };