prometheus-lua / Prometheus

Lua Obfuscator written in pure Lua
https://levno-710.gitbook.io/prometheus/
GNU Affero General Public License v3.0
220 stars 65 forks source link

Made `bytesToString` much more performant #121

Closed ccuser44 closed 1 year ago

ccuser44 commented 1 year ago

Superseeds #119

This makes the function much more performant. String creation is one of the most expensive operations in Lua and the old function has a very bad time complexity in creating lots of strings. This fixes that