You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
399 B
13 lines
399 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
const crypto_1 = require("crypto"); |
|
const rnds8Pool = new Uint8Array(256); |
|
let poolPtr = rnds8Pool.length; |
|
function rng() { |
|
if (poolPtr > rnds8Pool.length - 16) { |
|
(0, crypto_1.randomFillSync)(rnds8Pool); |
|
poolPtr = 0; |
|
} |
|
return rnds8Pool.slice(poolPtr, (poolPtr += 16)); |
|
} |
|
exports.default = rng;
|
|
|