Added babel-helper-split-export-declaration (#7313)
This commit is contained in:
committed by
GitHub
parent
ea3f2d9299
commit
4d164bd8e6
@@ -1,13 +1,14 @@
|
||||
export { _whatever as whatever };
|
||||
export { _wowzers as default };
|
||||
var _foo = "yes",
|
||||
foob = "no";
|
||||
export { _foo as foo, foob };
|
||||
|
||||
function _whatever() {}
|
||||
|
||||
export { _whatever as whatever };
|
||||
|
||||
function _wowzers() {}
|
||||
|
||||
export { _wowzers as default };
|
||||
var bar = {
|
||||
foo: function foo() {
|
||||
_foo;
|
||||
|
||||
Reference in New Issue
Block a user