Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Decompresses raw LZ4 block bytes with LZ4 block decompression and returns raw decompressed bytes as a Lua string.
lz4decompress(data: string, originalSize?: number): string
crypt.lz4decompress
crypt.lz4.decompress
lz4.decompress
data
string
originalSize
number
decompressed
local source = "Real Docs" local compressed = lz4compress(source) local decompressed = lz4decompress(compressed, #source) print(decompressed) print(decompressed == source)