mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-09 03:58:08 +11:00
11 lines
307 B
Lua
11 lines
307 B
Lua
-- This is released into the public domain.
|
|
-- No warranty is provided, implied or otherwise.
|
|
|
|
-- Example compression engine.
|
|
-- Given: data, lexCrunch
|
|
-- returns compressionEngine, compressedData
|
|
return function (data, lexCrunch)
|
|
return lexCrunch.process(" $engineInput = $engineOutput ", {}), data
|
|
end
|
|
|