UNPKG

uwurandom

Version:

`/dev/urandom` is made out of cold hard math. Instead, consider using `/dev/uwurandom`, which generates data through a tiny catgirl furiously typing away utter nonsense inside your computer.

10 lines (8 loc) 241 B
#!/usr/bin/env node import {UwurandomState, DestBuffer} from './dist/uwurandom.mjs'; const state = new UwurandomState(); const dest = new DestBuffer(8192); while (true) { state.generate(dest); process.stdout.write(dest.asText()); }