(count)
| 92 | }; |
| 93 | |
| 94 | const createCounter = (count) => () => { |
| 95 | return count++; |
| 96 | }; |
| 97 | |
| 98 | // ~22k hosts before 50% chance of initial counter collision |
| 99 | // with a remaining counter range of 9.0e+15 in JavaScript. |
no outgoing calls
no test coverage detected
searching dependent graphs…