These libraries are experimental. APIs may change without notice. Generated from source on 6/15/2026.

GZip

@korulang/gzip - Gzip compression for Koru

@koru/gzip

@korulang/gzip - Gzip compression for Koru Wraps zlib (the industry standard) for gzip compression/decompression. Works at both compile-time and runtime. USAGE: ~import koru/gzip ~koru/gzip:compress(data: my_bytes, allocator: alloc) | compressed c |> // c.data is gzipped, c.original_size for stats | error e |> // e.msg describes the error ~koru/gzip:decompress(data: gzipped, allocator: alloc) | decompressed d |> // d.data is original content | error e |> ...