UNPKG
@debellate/justcalc_square_cube
Version:
latest (1.0.0)
1.0.0
Simple node package to calcualte square and cube
@debellate/justcalc_square_cube
/
index.js
8 lines
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
JustCalc
=
function
(
){
this
.
square
=
function
(
no
){
return
no*no; },
this
.
cube
=
function
(
no
){
return
no*no*no; } }