UNPKG

pdp-g-7

Version:
11 lines (9 loc) 165 B
function summa(a, b, operation) { return { first: a, second: b, operation: operation, value: eval(`${a} ${operation} ${b}`), }; } module.exports = summa;