023fb2bfd7
chore(examples): improve contents listing with indent
2024-12-30 18:23:53 +00:00
895cd63fee
chore(examples): add FIXME note for future self
2024-12-30 11:27:09 +00:00
10a399c91f
refactor: minor sylistic changes
...
Swaps places with the pattern:
```luau
x = x + 1
```
to use:
```luau
x += 1
```
2024-12-30 11:26:22 +00:00
c2e638cbec
style: apply stylua formatter
2024-12-30 11:13:57 +00:00
792682e46d
chore(LICENSE): change copyright field
2024-12-30 11:12:45 +00:00
681b9ce1bf
feat: implement decompression and extraction
...
* Implements a decompression step for extraction, currently supporting
`DEFLATE` and `STORED`
* Moved testing file to `examples/`
* Added validation step to `ZipReader:extract` with options to
optionally skip it (matches checksum and uncompressed size)
2024-12-30 11:09:48 +00:00
e57b377b80
chore(pkg): remove unneeded deps
2024-12-29 05:21:05 +00:00
df134c31e0
refactor: include code comments
2024-12-28 18:01:17 +00:00
b3777ba2b1
chore: init, the basics
...
Implement core `ZipReader`, `ZipEntry` and basic API. Supports simple
zip format deserialization, without advanced features, or decompression.
2024-12-28 17:19:37 +00:00