()
| 293 | // Use a simple seeded random for reproducibility |
| 294 | let random = seed; |
| 295 | const nextRandom = () => { |
| 296 | random = (random * 1103515245 + 12345) & 0x7fffffff; |
| 297 | return random / 0x7fffffff; |
| 298 | }; |
| 299 | |
| 300 | for (let i = 0; i < wordCount; i++) { |
| 301 | // Mix common words with technical terms (70% common, 30% technical) |
no outgoing calls
no test coverage detected