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
Take this valid javascript:
class Test { set x(e) { throw Error("Operation not supported"); } }
It minifies to class Test{set x(){throw Error("Operation not supported")}}, expanded:
class Test{set x(){throw Error("Operation not supported")}}
class Test { set x() { throw Error("Operation not supported"); } }
which is invalid javascript.
The text was updated successfully, but these errors were encountered:
1745dc7
Thanks for the report, should be fixed now on master.
Sorry, something went wrong.
No branches or pull requests
Take this valid javascript:
It minifies to
class Test{set x(){throw Error("Operation not supported")}}
, expanded:which is invalid javascript.
The text was updated successfully, but these errors were encountered: