/opt/canhelp/node_modules/uuid/dist/commonjs-browser
NameSizeModeActions
index.js26490644editdlrm
max.js1780644editdlrm
md5.js69550644editdlrm
native.js2590644editdlrm
nil.js1780644editdlrm
parse.js13630644editdlrm
regex.js2940644editdlrm
rng.js9230644editdlrm
sha1.js25920644editdlrm
stringify.js19160644editdlrm
v1.js39210644editdlrm
v1ToV6.js13170644editdlrm
v3.js3880644editdlrm
v4.js9790644editdlrm
v5.js3910644editdlrm
v6.js24080644editdlrm
v6ToV1.js12980644editdlrm
v7.js49700644editdlrm
v35.js20030644editdlrm
validate.js3860644editdlrm
version.js4490644editdlrm
Edit: /opt/canhelp/node_modules/uuid/dist/commonjs-browser/rng.js (923B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = rng; // Unique ID creation requires a high quality random # generator. In the browser we therefore // require the crypto API and do not support built-in fallback to lower quality random number // generators (like Math.random()). var getRandomValues; var rnds8 = new Uint8Array(16); function rng() { // lazy load so that environments that need to polyfill have a chance to do so if (!getRandomValues) { // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto); if (!getRandomValues) { throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); } } return getRandomValues(rnds8); }