UNPKG

289 BJavaScriptView Raw
1module.exports = () => {
2 return {
3 visitor: {
4 ExportNamedDeclaration(path) {
5 const declaration = path.node.declaration
6
7 // Ignore "export { Foo as default }" syntax
8 if (declaration) {
9 path.replaceWith(declaration)
10 }
11 }
12 }
13 }
14}