An open API service indexing awesome lists of open source software.

https://github.com/synodriver/lua-smaz

SMAZ - compression for very small strings, for lua
https://github.com/synodriver/lua-smaz

Last synced: about 1 year ago
JSON representation

SMAZ - compression for very small strings, for lua

Awesome Lists containing this project

README

          

✨ lua-smaz ✨

The lua binding for smaz

### usage
```lua
smaz = require("smaz")

data = "12341234"

encoded = smaz.compress(data, 100)
print(encoded)
print(smaz.decompress(encoded,100))
```