var _export = {}; _export.sum = function(a, b) { return a + b; } _export.prod = function(a, b) { return a * b; } export default _export;