Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Bun.deflateSync()
Uint8Array
const data = Buffer.from("Hello, world!"); const compressed = Bun.deflateSync("Hello, world!"); // => Uint8Array const decompressed = Bun.inflateSync(compressed); // => Uint8Array
Was this page helpful?