We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
With version 0.0.4 of babel-preset-babili, Safe setting a variable to a null string is removed by the minification process.
The following code:
this.value = a || '';
is minified to:
this.value = a;
The text was updated successfully, but these errors were encountered:
Looks like a dup of #174 ?
Sorry, something went wrong.
Yes. let's track it in #174
Fix guarded expressions being utilized elsewhere
443d9bf
+ (Close #171) + (close #174) + (close #176)
Fix guarded expressions being utilized elsewhere (#179)
11664eb
Successfully merging a pull request may close this issue.
With version 0.0.4 of babel-preset-babili, Safe setting a variable to a null string is removed by the minification process.
The following code:
is minified to:
The text was updated successfully, but these errors were encountered: