UNPKG
demo_publish_custommodule
Version:
latest (1.0.1)
1.0.1
1.0.0
This is simple node module, provide you functionality of calculating square and cube.
demo_publish_custommodule
/
index.js
11 lines
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
.
MyCalc
=
function
(
){
this
.
square
=
function
(
no
){
return
no*no; },
this
.
cube
=
function
(
no
){
return
no*no*no; },
this
.
mult
=
function
(
no1,no2
){
return
no1*no2; } }