Oleksandr Herasymov

Results 3 comments of Oleksandr Herasymov

> > After Bun: local bun-debug (build/debug) > > fwiw, you should be profiling based on release bun (`bun build:release && ./build/release/bun`) Fair point. I used a debug build just...

Minimal repro ```js import zlib from "zlib"; const size = 1024 * 1024; const iterations = 1000; const payload = Buffer.alloc(size, 120); // 'x' // Correctness check const bun =...