UNPKG
just_module
Version:
latest (1.0.0)
1.0.0
publishing custome module
just_module
/
index.js
8 lines
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
MyCalc
=
function
(
){
this
.
square
=
function
(
no
){
return
no*no; },
this
.
cube
=
function
(
){
return
no*no*no; } }