Overruled @babel/helpers to fix how initializers play with decorated properties. Thus circumventing the imperformant and lengthy code being generated by babel in the non-legacy option.
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
let _foo = "main";
|
|
|
|
function _$_renameBindingEqual_main() { return _$_renameBindingEqual_dependency() + _foo; }
|
|
|
|
let foo = "dependency";
|
|
|
|
function _$_renameBindingEqual_dependency() { return foo; }
|
|
|
|
_$_renameBindingEqual_main;
|