mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 19:48:07 +11:00
11 lines
299 B
Lua
11 lines
299 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(" $engineInput = $engineOutput ", {}), data
|
|
end
|
|
|