How do you call a function from within another function in a module.exports declaration?
module.exports
var bla = require(\'./bla.js\'); console.log(bl
const Service = { foo: (a, b) => a + b, bar: (a, b) => Service.foo(a, b) * b } module.exports = Service