Skip to content

lz4decompress

Description:

This function demonstrates the usage of the lz4decompress API.

Example:

-- Decompress data using lz4
local compressed_data = "..."
local decompressed_data = lz4decompress(compressed_data)

print("Decompressed data: " .. decompressed_data)