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