Update node-zlib-brotli.mjs

This commit is contained in:
Jarred Sumner
2025-08-01 14:35:04 -07:00
parent 7a31108019
commit 7726e5c670

View File

@@ -28,10 +28,4 @@ bench("brotli compress stream", async () => {
await pipeline(source, compress);
});
bench("brotli decompress stream", async () => {
const source = Readable.from([compressed]);
const decompress = createBrotliDecompress();
await pipeline(source, decompress);
});
await run();