summaryrefslogtreecommitdiff
path: root/comproxy/node_modules/uuid-v4/index.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-11-11 23:47:49 +0100
committerMinteck <contact@minteck.org>2022-11-11 23:47:49 +0100
commit209356b8ade1920b50d1d3a1a5e121c6623d167b (patch)
tree5301396987d1510f715a0b1c24754873af19e1dc /comproxy/node_modules/uuid-v4/index.js
parent2c4ae43e688a9873e86211ea0e7aeb9ba770dd77 (diff)
downloadpluralconnect-209356b8ade1920b50d1d3a1a5e121c6623d167b.tar.gz
pluralconnect-209356b8ade1920b50d1d3a1a5e121c6623d167b.tar.bz2
pluralconnect-209356b8ade1920b50d1d3a1a5e121c6623d167b.zip
Update
Diffstat (limited to 'comproxy/node_modules/uuid-v4/index.js')
-rw-r--r--comproxy/node_modules/uuid-v4/index.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/comproxy/node_modules/uuid-v4/index.js b/comproxy/node_modules/uuid-v4/index.js
new file mode 100644
index 0000000..ce0a0bb
--- /dev/null
+++ b/comproxy/node_modules/uuid-v4/index.js
@@ -0,0 +1,28 @@
+
+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();
+};
+