diff options
author | RaindropsSys <contact@minteck.org> | 2023-06-02 16:31:02 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-06-02 16:31:02 +0200 |
commit | 48afc99d05c7bcd54231f340635f5102a03fbda4 (patch) | |
tree | bdad312490ee42b84dde71d5c49266f1b7fc792e /includes/external/computers/node_modules/uuid-v4/index.js | |
parent | 82ef2e6f4fadb6ed721a0de79ec4d2fcfdc3f426 (diff) | |
download | pluralconnect-48afc99d05c7bcd54231f340635f5102a03fbda4.tar.gz pluralconnect-48afc99d05c7bcd54231f340635f5102a03fbda4.tar.bz2 pluralconnect-48afc99d05c7bcd54231f340635f5102a03fbda4.zip |
Updated 7 files, added error.php and deleted 39 files (automated)
Diffstat (limited to 'includes/external/computers/node_modules/uuid-v4/index.js')
-rw-r--r-- | includes/external/computers/node_modules/uuid-v4/index.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/includes/external/computers/node_modules/uuid-v4/index.js b/includes/external/computers/node_modules/uuid-v4/index.js deleted file mode 100644 index ce0a0bb..0000000 --- a/includes/external/computers/node_modules/uuid-v4/index.js +++ /dev/null @@ -1,28 +0,0 @@ - -exports = module.exports = function() { - var ret = '', value; - for (var i = 0; i < 32; i++) { - value = exports.random() * 16 | 0; - // Insert the hypens - if (i > 4 && i < 21 && ! (i % 4)) { - ret += '-'; - } - // Add the next random character - ret += ( - (i === 12) ? 4 : ( - (i === 16) ? (value & 3 | 8) : value - ) - ).toString(16); - } - return ret; -}; - -var uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/; -exports.isUUID = function(uuid) { - return uuidRegex.test(uuid); -}; - -exports.random = function() { - return Math.random(); -}; - |