(length = defaultItemsSize)
| 6 | const iterations = 100; |
| 7 | const defaultItemsSize = 100000; |
| 8 | const makeBigArray = (length = defaultItemsSize) => Array.from({ length }).fill(1); |
| 9 | const makeReadableTime = nanoseconds => (nanoseconds / 1e6).toFixed(3).padStart(7, ' '); |
| 10 | const printHistogram = (name, h) => { |
| 11 | console.log(); |
no outgoing calls
no test coverage detected