serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
18 lines (16 loc) • 528 B
JavaScript
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.js');
let crypto = require("crypto");
crypto = require_rolldown_runtime.__toESM(crypto);
//#region node_modules/uuid/dist/esm-node/rng.js
const rnds8Pool = new Uint8Array(256);
let poolPtr = rnds8Pool.length;
function rng() {
if (poolPtr > rnds8Pool.length - 16) {
crypto.default.randomFillSync(rnds8Pool);
poolPtr = 0;
}
return rnds8Pool.slice(poolPtr, poolPtr += 16);
}
//#endregion
exports.default = rng;
//# sourceMappingURL=rng.js.map