()
| 16 | let result = ""; |
| 17 | |
| 18 | function next() { |
| 19 | state ^= state << 13; |
| 20 | state ^= state >>> 17; |
| 21 | state ^= state << 5; |
| 22 | return state >>> 0; |
| 23 | } |
| 24 | |
| 25 | while (result.length < length) { |
| 26 | const rnd = next(); |
no outgoing calls
no test coverage detected