You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that there is an issue when "\n" is included in print command.
For example, when we have a lua file that contains the following:
print("\n\n")
Then, we observe that after obfuscation in lua console, "\n" is displayed in the output and no new line is inserted.
In a normal execution (without obfuscation), a new line break should exist every time "\n" is present.
Moreover, the same issue seems to exist also when we want to export text at a new file through file:write command.
file:write("\n\n")
The above one will be printed only in one line. Also, "\n" is still appeared in the new output.
Maybe one function for escaping such characters should be used.
The text was updated successfully, but these errors were encountered:
It seems that there is an issue when "\n" is included in print command.
For example, when we have a lua file that contains the following:
print("\n\n")
Then, we observe that after obfuscation in lua console, "\n" is displayed in the output and no new line is inserted.
In a normal execution (without obfuscation), a new line break should exist every time "\n" is present.
Moreover, the same issue seems to exist also when we want to export text at a new file through file:write command.
file:write("\n\n")
The above one will be printed only in one line. Also, "\n" is still appeared in the new output.
Maybe one function for escaping such characters should be used.
The text was updated successfully, but these errors were encountered: