Preview: rng.js
Size: 323 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/uuid/dist/esm-node/rng.js
import crypto from 'crypto';
const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
let poolPtr = rnds8Pool.length;
export default function rng() {
if (poolPtr > rnds8Pool.length - 16) {
crypto.randomFillSync(rnds8Pool);
poolPtr = 0;
}
return rnds8Pool.slice(poolPtr, poolPtr += 16);
}
Directory Contents
Dirs: 0 × Files: 16