SILENT KILLERPanel

Current Path: > > lib > node_modules > npm > node_modules > uuid > lib


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //lib/node_modules/npm/node_modules/uuid/lib

NameTypeSizeLast ModifiedActions
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.

Reading File: //lib/node_modules/npm/node_modules/uuid/lib/bytesToUuid.js

/**
 * 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