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
Given the following script as test.lua:
test.lua
print(("\128"):byte(1, 1) == 128)
Run darklua minify test.lua test.min.lua to get test.min.lua:
darklua minify test.lua test.min.lua
test.min.lua
print(('\u{80}'):byte(1,1)==128)
Run both scripts using luau and observe that the first script will print true while the second one will print false
The text was updated successfully, but these errors were encountered:
having the same issue with luauception
Sorry, something went wrong.
Seems to have been introduced in 0.14.1, as in 0.14.0 this doesn't seem to be an issue. (Possibly #232 ?)
No branches or pull requests
Given the following script as
test.lua
:Run
darklua minify test.lua test.min.lua
to gettest.min.lua
:Run both scripts using luau and observe that the first script will print true while the second one will print false
The text was updated successfully, but these errors were encountered: