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
When uglify: true, output is transformed in the way, which produces runtime errors in IE 11.
uglify: true
For example, undefined check:
typeof varName1 !== "undefined"
is transformed to:
0 !== varName1
which fails with "Wrong number of arguments or invalid property assignment" error at runtime.
Most likely, related to the mishoo/UglifyJS#2813
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
uglify: true
, output is transformed in the way, which produces runtime errors in IE 11.For example, undefined check:
is transformed to:
which fails with "Wrong number of arguments or invalid property assignment" error at runtime.
Most likely, related to the mishoo/UglifyJS#2813
The text was updated successfully, but these errors were encountered: