simple compression library suitable for compressing very short strings
$ ./test/test_smaz.lua
smaz = require("smaz")
test_string = "StringToEncode"
compressed_string = smaz.compress(test_string)
uncompressed_string, err = smaz.decompress(compressed_string)
if not uncompressed_string then
print("Ooops, error: " .. err)
else
print("Hooray!")
end
This project is licensed under the MIT License - see the LICENSE.md file for details