({ encoding, n })
| 28 | }); |
| 29 | |
| 30 | function main({ encoding, n }) { |
| 31 | const { normalizeEncoding } = require('internal/util'); |
| 32 | |
| 33 | bench.start(); |
| 34 | for (let i = 0; i < n; i++) { |
| 35 | normalizeEncoding(encoding); |
| 36 | } |
| 37 | bench.end(n); |
| 38 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…