export function sum(a, b) { if (!a || !b) throw Error("gimme a number") return a + b }