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
a = {[-1]: 1}
Worked in v0.17.19. Does not work in 0.18.3
I fixed it in userland by converting it to a string first (which is done anyways by JS)
The text was updated successfully, but these errors were encountered:
This issue is saying --minify incorrectly removes the [] from [-1] from 0.18.0, which leads to a syntax error (a = { -1: 1 }). playground link
--minify
[]
[-1]
a = { -1: 1 }
Sorry, something went wrong.
5eb8f03
that was fast.... thanks @evanw
And thanks for your awesome work in this wonderful piece of software!
No branches or pull requests
Worked in v0.17.19.
Does not work in 0.18.3
I fixed it in userland by converting it to a string first (which is done anyways by JS)
The text was updated successfully, but these errors were encountered: