UNPKG

mcalc

Version:

math calculator

13 lines 209 B
var call_counter=require('./call_counter'); function add(x,y){ call_counter(); return x+y; } function sub(x,y){ call_counter(); return x-y; } module.exports={ addition:add, subtraction:sub; }