Skip to content

Используйте Bun.deflateSync() для сжатия Uint8Array с DEFLATE.

ts
const data = Buffer.from("Hello, world!");
const compressed = Bun.deflateSync("Hello, world!");
// => Uint8Array

const decompressed = Bun.inflateSync(compressed);
// => Uint8Array

Смотрите Документация > API > Утилиты для других полезных утилит.

Bun от www.bunjs.com.cn