made newer installer that does not require tar stuff
This commit is contained in:
1
prod/deflate/lib/LibDeflate
Normal file
1
prod/deflate/lib/LibDeflate
Normal file
File diff suppressed because one or more lines are too long
9
prod/deflate/lib/deflate
Normal file
9
prod/deflate/lib/deflate
Normal file
@@ -0,0 +1,9 @@
|
||||
local deflate=require("LibDeflate")
|
||||
local lib={}
|
||||
lib.compress=function(data)
|
||||
return deflate:CompressDeflate(data)
|
||||
end
|
||||
lib.decompress=function(data)
|
||||
return deflate:DecompressDeflate(data)
|
||||
end
|
||||
return lib
|
||||
Reference in New Issue
Block a user