diff options
author | Minteck <contact@minteck.org> | 2022-11-28 17:14:38 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-11-28 17:14:38 +0100 |
commit | 18efd30a263ec0d79a26a82cbd8c90c9f81056b7 (patch) | |
tree | aea01bf3506dda706719fc68eb37b77ed9ef3fe8 /node_modules/uuid-v4/index.js | |
download | autoreport-18efd30a263ec0d79a26a82cbd8c90c9f81056b7.tar.gz autoreport-18efd30a263ec0d79a26a82cbd8c90c9f81056b7.tar.bz2 autoreport-18efd30a263ec0d79a26a82cbd8c90c9f81056b7.zip |
Diffstat (limited to 'node_modules/uuid-v4/index.js')
-rw-r--r-- | node_modules/uuid-v4/index.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/node_modules/uuid-v4/index.js b/node_modules/uuid-v4/index.js new file mode 100644 index 0000000..ce0a0bb --- /dev/null +++ b/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(); +}; + |