(b0, b1, len, iter)
| 13 | } |
| 14 | |
| 15 | function compareUsingOffset(b0, b1, len, iter) { |
| 16 | for (let i = 0; i < iter; i++) |
| 17 | b0.compare(b1, 1, len, 1, len); |
| 18 | } |
| 19 | |
| 20 | function main({ n, size, method }) { |
| 21 | const fn = method === 'slice' ? compareUsingSlice : compareUsingOffset; |
nothing calls this directly
no test coverage detected
searching dependent graphs…