Minecraft-like Roblox block game
rblx.games/135624152691584
roblox
roblox-game
rojo
1--Deflate.lua
2--iiau, Sat May 18 2024
3
4local Deflate = {}
5
6local LZW = require(script.LZW)
7local Huffman = require(script.Huffman)
8
9Deflate.encode = function(data: string) : string
10 data = LZW.compress(data)
11 return Huffman.encode(data)
12end
13
14Deflate.decode = function(data: string) : string
15 data = Huffman.decode(data)
16 return LZW.decompress(data)
17end
18
19return Deflate