blob: 26c20564487546233f8b075d893044bb9d8c8a4b (
plain)
1
2
3
4
5
6
7
8
9
10
|
function gen_export() {
var _export = {};
_export.sum = function(a, b) { return a + b; }
_export.prod = function(a, b) { return a * b; }
return _export;
}
export default gen_export();
|