Exportar todo o JavaScript
// You can't export all functions with a wildcard statement
export { func1, func2, func3 } // This is the best way to export for ES6
// You can't export all functions with a wildcard statement
export { func1, func2, func3 } // This is the best way to export for ES6