UNPKG

sourabh_calculator_module

Version:

This is simple calculator with add and sub method

8 lines 178 B
module.exports.Calculator = function () { this.addition = function(a,b){ return a + b; } this.subraction = function(a,b){ return a - b; } }