initial commit
This commit is contained in:
commit
ee8aedd857
1599 changed files with 652440 additions and 0 deletions
11
backend/node_modules/uuid/dist/esm-browser/rng.js
generated
vendored
Normal file
11
backend/node_modules/uuid/dist/esm-browser/rng.js
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
let getRandomValues;
|
||||
const rnds8 = new Uint8Array(16);
|
||||
export default function rng() {
|
||||
if (!getRandomValues) {
|
||||
if (typeof crypto === 'undefined' || !crypto.getRandomValues) {
|
||||
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
|
||||
}
|
||||
getRandomValues = crypto.getRandomValues.bind(crypto);
|
||||
}
|
||||
return getRandomValues(rnds8);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue