()
| 40 | } |
| 41 | |
| 42 | function stop() { |
| 43 | bench.end(reads); |
| 44 | |
| 45 | try { |
| 46 | fs.unlinkSync(filename); |
| 47 | } catch { |
| 48 | // Continue regardless of error. |
| 49 | } |
| 50 | |
| 51 | process.exit(0); |
| 52 | } |
| 53 | |
| 54 | function afterRead(er, data) { |
| 55 | if (er) { |
no test coverage detected
searching dependent graphs…