const add = (a, b) => a + b; const sub = (a, b) => a - b; module.exports = { moduleName: "calc module", add: add, sub: sub, }