Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
uuid /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
esm-browser
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
esm-node
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
umd
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
index.js
1.71
KB
-rw-r--r--
2023-08-14 04:33
md5-browser.js
6.83
KB
-rw-r--r--
2023-08-14 04:33
md5.js
545
B
-rw-r--r--
2023-08-14 04:33
nil.js
188
B
-rw-r--r--
2023-08-14 04:33
parse.js
1.35
KB
-rw-r--r--
2023-08-14 04:33
regex.js
267
B
-rw-r--r--
2023-08-14 04:33
rng-browser.js
1.1
KB
-rw-r--r--
2023-08-14 04:33
rng.js
542
B
-rw-r--r--
2023-08-14 04:33
sha1-browser.js
2.53
KB
-rw-r--r--
2023-08-14 04:33
sha1.js
548
B
-rw-r--r--
2023-08-14 04:33
stringify.js
1.62
KB
-rw-r--r--
2023-08-14 04:33
uuid-bin.js
1.96
KB
-rw-r--r--
2023-08-14 04:33
v1.js
3.55
KB
-rw-r--r--
2023-08-14 04:33
v3.js
410
B
-rw-r--r--
2023-08-14 04:33
v35.js
1.96
KB
-rw-r--r--
2023-08-14 04:33
v4.js
854
B
-rw-r--r--
2023-08-14 04:33
v5.js
413
B
-rw-r--r--
2023-08-14 04:33
validate.js
406
B
-rw-r--r--
2023-08-14 04:33
version.js
469
B
-rw-r--r--
2023-08-14 04:33
Save
Rename
"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()). let getRandomValues; const 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. Also, // find the complete implementation of crypto (msCrypto) on IE11. getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto); if (!getRandomValues) { throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); } } return getRandomValues(rnds8); }