lzf
lzf is a very small data compression library.
Usage
local lzf = require "llzf"
local text = "this's text and tell me how to use lzf lib."
local text = "this's text and tell me how to use lzf lib."
Deflate
local enc = lzf.compress(text)
Inflate
local dec = lzf.uncompress(enc)
validation
assert(dec == text)