Bun.deflateSync() to compress a Uint8Array with DEFLATE.
See Docs > API > Utils for more useful utilities.
Bun.deflateSync() to compress a Uint8Array with DEFLATE.
const data = Buffer.from("Hello, world!");
const compressed = Bun.deflateSync("Hello, world!");
// => Uint8Array
const decompressed = Bun.inflateSync(compressed);
// => Uint8Array
Was this page helpful?