mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-09-02 10:39:33 +00:00
50986b1464
* main: Prepare for release 2.27.0. Clean up action description. Update dependencies (#282) Update Readme & Provide current context on Hardware Acceleration on Github (#279) Pre Emulator Launch Script (#247) Update to Node 16 (#276)
24 lines
549 B
JavaScript
24 lines
549 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = rng;
|
|
|
|
var _crypto = _interopRequireDefault(require("crypto"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
|
|
|
|
let poolPtr = rnds8Pool.length;
|
|
|
|
function rng() {
|
|
if (poolPtr > rnds8Pool.length - 16) {
|
|
_crypto.default.randomFillSync(rnds8Pool);
|
|
|
|
poolPtr = 0;
|
|
}
|
|
|
|
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
|
} |