gzip(chunks: AsyncIterable<StandardData>): AsyncIterable<Uint8Array>
Compress data using gzip.
Works with any StandardData input (strings, bytes, arrays). Useful for compressing data before writing to files or sending to processes.
chunks: AsyncIterable<StandardData>
The data to compress.
AsyncIterable<Uint8Array>
An AsyncIterable of compressed bytes.