mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-02 22:00:53 +01:00
refactor: add note for future optimization in crc impl
This commit is contained in:
parent
e7a654d530
commit
de96193a47
1 changed files with 1 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
local CRC32_TABLE = table.create(256)
|
||||
|
||||
-- TODO: Maybe compute this AoT as an optimization
|
||||
-- Initialize the lookup table and lock it in place
|
||||
for i = 0, 255 do
|
||||
local crc = i
|
||||
|
|
Loading…
Add table
Reference in a new issue