Files

21 lines
386 B
Plaintext
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
---
title: Compress and decompress data with DEFLATE
sidebarTitle: DEFLATE compression
mode: center
---
Use `Bun.deflateSync()` to compress a `Uint8Array` with DEFLATE.
```ts
const data = Buffer.from("Hello, world!");
const compressed = Bun.deflateSync(data);
// => Uint8Array
const decompressed = Bun.inflateSync(compressed);
// => Uint8Array
```
---
See [Utils](/runtime/utils).