UNPKG

vmymath

Version:
20 lines (17 loc) 244 B
function add(a,b){ return a+b } function subtract(a,b){ return a-b } function multiply(a,b){ return a*b } function divide(a,b){ return a/b } module.exports={ add, subtract, multiply, divide}