({ n, size })
| 14 | }); |
| 15 | |
| 16 | function main({ n, size }) { |
| 17 | bench.start(); |
| 18 | for (let i = 0; i < n; ++i) |
| 19 | _cryptoResult = randomBytes(size); |
| 20 | bench.end(n); |
| 21 | // Avoid V8 deadcode (elimination) |
| 22 | assert.ok(_cryptoResult); |
| 23 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…