UNPKG

zen_es_calc_square_cube

Version:

simple calculator module with square and cube functions

9 lines 194 B
//ES5 class Calculator module.exports.Calculator = function(){ this.square = function(no){ return no*no; }, this.cube = function(no){ return no*no*no; } }