"use strict" function sum(a, b) { if (!a || !b) throw Error("gimme a number") return a + b } module.exports = { sum, }