({ n, type, inputType })
| 65 | }); |
| 66 | |
| 67 | function main({ n, type, inputType }) { |
| 68 | const inputs = paramGenerator(inputType); |
| 69 | const input = inputs[type]; |
| 70 | const u = new URLSearchParams(input); |
| 71 | |
| 72 | bench.start(); |
| 73 | for (let i = 0; i < n; i += 1) |
| 74 | u.toString(); |
| 75 | bench.end(n); |
| 76 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…