Skip to content
Permalink
ffd96b38fb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Chris Raynor Updating node_modules
Latest commit 47fa956 Sep 29, 2020 History
0 contributors

Users who have contributed to this file

16 lines (11 sloc) 360 Bytes
"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 rnds8 = new Uint8Array(16);
function rng() {
return _crypto.default.randomFillSync(rnds8);
}