(cb)
| 44 | |
| 45 | function benchClassic(filesize, n, totalOps) { |
| 46 | function run(cb) { |
| 47 | const r = fs.createReadStream(filename); |
| 48 | const w = new Writable({ write(data, enc, cb) { cb(); } }); |
| 49 | pipeline(r, w, cb); |
| 50 | } |
| 51 | |
| 52 | // Warmup |
| 53 | run(() => { |
no test coverage detected