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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apologies if this works with the unreleased code, I've only tested the current latest published version.
This
function foo(bar) { if ((bar & 0xFFFFF800) == 0) { return 1; } else if ((bar & 0xFFFF0000) == 0) { return 2; } return 3; }
Minifes to this, note the lack of return 3 at all
return 3
function foo(a){if((a&4294965248)==0)return 1;if((a&4294901760)==0)return 2;if((a&2492471136)==0)return 2}
The text was updated successfully, but these errors were encountered:
Simplify bytesForCodePoint
c2f08a8
This also works around a bug in the minifier - tdewolff/minify#335
4efa12e
Thanks for the bug report, I'll release a new version soon!
Sorry, something went wrong.
Thank you for a fast fix!
Has been released in v2.9.6!
No branches or pull requests
Apologies if this works with the unreleased code, I've only tested the current latest published version.
This
Minifes to this, note the lack of
return 3
at allThe text was updated successfully, but these errors were encountered: