SILENT KILLERPanel

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


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/

NameTypeSizeLast ModifiedActions
bin Directory - -
lib Directory - -
AUTHORS File 169 bytes March 10 2021 14:36:37.
CHANGELOG.md File 3663 bytes March 10 2021 14:36:37.
LICENSE.md File 1109 bytes March 10 2021 14:36:37.
README.md File 8535 bytes March 10 2021 14:36:37.
index.js File 120 bytes March 10 2021 14:36:37.
package.json File 2357 bytes March 10 2021 14:36:37.
v1.js File 3336 bytes March 10 2021 14:36:37.
v3.js File 106 bytes March 10 2021 14:36:37.
v4.js File 680 bytes March 10 2021 14:36:37.
v5.js File 109 bytes March 10 2021 14:36:37.

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

var rng = require('./lib/rng');
var bytesToUuid = require('./lib/bytesToUuid');

function v4(options, buf, offset) {
  var i = buf && offset || 0;

  if (typeof(options) == 'string') {
    buf = options === 'binary' ? new Array(16) : null;
    options = null;
  }
  options = options || {};

  var rnds = options.random || (options.rng || rng)();

  // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
  rnds[6] = (rnds[6] & 0x0f) | 0x40;
  rnds[8] = (rnds[8] & 0x3f) | 0x80;

  // Copy bytes to buffer, if provided
  if (buf) {
    for (var ii = 0; ii < 16; ++ii) {
      buf[i + ii] = rnds[ii];
    }
  }

  return buf || bytesToUuid(rnds);
}

module.exports = v4;

SILENT KILLER Tool