UNPKG

5d4-msd1

Version:
15 lines (12 loc) 221 B
exports.add = function(x, y){ return x + y; }; exports.sub = function(x, y){ return x - y; }; exports.mult = function(x, y){ return x * y; }; exports.div = function(x, y){ return x / y; };