()
| 86 | return fs.createReadStream(path.join(__dirname, './input.js')); |
| 87 | } |
| 88 | function withFS () { |
| 89 | return through(function (chunk, enc, next) { |
| 90 | next(null, chunk); |
| 91 | }, function (next) { |
| 92 | this.push('\nvar a, fs = require("fs"), x; fs.readFileSync("index.js");'); |
| 93 | next(); |
| 94 | }); |
| 95 | } |
| 96 | |
| 97 | function warmup (run, cb) { |
| 98 | var i = 5; |
no outgoing calls
no test coverage detected
searching dependent graphs…