mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
365 B
365 B
name
| name |
|---|
| Compress and decompress data with gzip |
Use Bun.gzipSync() to compress a Uint8Array with gzip.
const data = Buffer.from("Hello, world!");
const compressed = Bun.gzipSync(data);
// => Uint8Array
const decompressed = Bun.gunzipSync(compressed);
// => Uint8Array
See Docs > API > Utils for more useful utilities.