function foo() { console.log('foo') }
function bar() { console.log('bar') }
function baz() { foo(); bar() }
export default {foo, bar, baz}
module.exports = {
method: function() {},
otherMethod: function() {},
};
module.exports = {
function1,
function2,
function3
}