Current Path: > > usr > lib > node_modules > npm > > node_modules > > uuid > > lib
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.8 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
bytesToUuid.js | File | 747 bytes | March 10 2021 14:36:37. | |
md5-browser.js | File | 6824 bytes | March 10 2021 14:36:37. | |
md5.js | File | 576 bytes | March 10 2021 14:36:37. | |
rng-browser.js | File | 1312 bytes | March 10 2021 14:36:37. | |
rng.js | File | 246 bytes | March 10 2021 14:36:37. | |
sha1-browser.js | File | 2338 bytes | March 10 2021 14:36:37. | |
sha1.js | File | 579 bytes | March 10 2021 14:36:37. | |
v35.js | File | 1622 bytes | March 10 2021 14:36:37. |
/** * Convert array of 16 byte values to UUID string format of the form: * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX */ var byteToHex = []; for (var i = 0; i < 256; ++i) { byteToHex[i] = (i + 0x100).toString(16).substr(1); } function bytesToUuid(buf, offset) { var i = offset || 0; var bth = byteToHex; // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 return ([bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], '-', bth[buf[i++]], bth[buf[i++]], '-', bth[buf[i++]], bth[buf[i++]], '-', bth[buf[i++]], bth[buf[i++]], '-', bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]]]).join(''); } module.exports = bytesToUuid;
SILENT KILLER Tool