Skip to content

lzf is a very small data compression library.

License

Notifications You must be signed in to change notification settings

cfadmin-cn/lua-lzf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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."

Deflate

local enc = lzf.compress(text)

Inflate

local dec = lzf.uncompress(enc)

validation

assert(dec == text)

Releases

No releases published

Packages

No packages published