You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letsomeFunctionWithALongName=()=>{// do some stuff}someFunctionWithALongName()someFunctionWithALongName()
into
letsomeFunctionWithALongName=()=>{// do some stuff}let_00000000000_LOCAL_FUNCTION_ALIAS_someFunctionWithALongName_=someFunctionWithALongName_00000000000_LOCAL_FUNCTION_ALIAS_someFunctionWithALongName_()_00000000000_LOCAL_FUNCTION_ALIAS_someFunctionWithALongName_()
and then hand it off to terser.
terser currently has a bug that will cause the name of someFunctionWithALongName() to be clobbered if I do the above transformation.
I will wait for terser to amend this.
The text was updated successfully, but these errors were encountered:
like as in turn
into
and then hand it off to terser.
terser currently has a bug that will cause the name of
someFunctionWithALongName()
to be clobbered if I do the above transformation.I will wait for terser to amend this.
The text was updated successfully, but these errors were encountered: