使用 Bun.gzipSync()
使用 gzip 压缩 Uint8Array
。
const data = Buffer.from("Hello, world!");
const compressed = Bun.gzipSync(data);
// => Uint8Array
const decompressed = Bun.gunzipSync(compressed);
// => Uint8Array
有关更多有用的实用程序,请参阅 文档 > API > 实用程序。
使用 Bun.gzipSync()
使用 gzip 压缩 Uint8Array
。
const data = Buffer.from("Hello, world!");
const compressed = Bun.gzipSync(data);
// => Uint8Array
const decompressed = Bun.gunzipSync(compressed);
// => Uint8Array
有关更多有用的实用程序,请参阅 文档 > API > 实用程序。