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.gzipSync()
Uint8Array
const data = Buffer.from("Hello, world!"); const compressed = Bun.gzipSync(data); // => Uint8Array const decompressed = Bun.gunzipSync(compressed); // => Uint8Array
Was this page helpful?