summaryrefslogtreecommitdiff
path: root/comproxy/node_modules/uuid-v4/index.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
committerMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
commit3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch)
tree75be5fba4368472fb11c8015aee026b2b9a71888 /comproxy/node_modules/uuid-v4/index.js
parent8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff)
downloadpluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'comproxy/node_modules/uuid-v4/index.js')
-rw-r--r--comproxy/node_modules/uuid-v4/index.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/comproxy/node_modules/uuid-v4/index.js b/comproxy/node_modules/uuid-v4/index.js
deleted file mode 100644
index ce0a0bb..0000000
--- a/comproxy/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();
-};
-