()
| 43 | bench.start(); |
| 44 | |
| 45 | function stop() { |
| 46 | bench.end(reads); |
| 47 | |
| 48 | try { |
| 49 | fs.unlinkSync(filename); |
| 50 | } catch { |
| 51 | // Continue regardless of error. |
| 52 | } |
| 53 | |
| 54 | process.exit(0); |
| 55 | } |
| 56 | |
| 57 | function read() { |
| 58 | fs.readFile(filename, encoding, afterRead); |
no test coverage detected
searching dependent graphs…