@aws-amplify/datastore 3.5.2-unstable.2 → 3.5.2-unstable.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aws-amplify-datastore.js +163 -742
- package/dist/aws-amplify-datastore.js.map +1 -1
- package/dist/aws-amplify-datastore.min.js +9 -9
- package/dist/aws-amplify-datastore.min.js.map +1 -1
- package/lib/.tsbuildinfo +1 -1
- package/lib/datastore/datastore.js +3 -4
- package/lib/datastore/datastore.js.map +1 -1
- package/lib/sync/processors/subscription.js +1 -1
- package/lib/sync/processors/subscription.js.map +1 -1
- package/lib/sync/processors/sync.js +6 -6
- package/lib/sync/processors/sync.js.map +1 -1
- package/lib-esm/.tsbuildinfo +1 -1
- package/lib-esm/datastore/datastore.js +3 -4
- package/lib-esm/datastore/datastore.js.map +1 -1
- package/lib-esm/sync/processors/subscription.js +1 -1
- package/lib-esm/sync/processors/subscription.js.map +1 -1
- package/lib-esm/sync/processors/sync.js +6 -6
- package/lib-esm/sync/processors/sync.js.map +1 -1
- package/package.json +8 -8
|
@@ -81002,7 +81002,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81002
81002
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DataStore", function() { return instance; });
|
|
81003
81003
|
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ "../core/lib-esm/index.js");
|
|
81004
81004
|
/* harmony import */ var immer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! immer */ "./node_modules/immer/dist/immer.esm.js");
|
|
81005
|
-
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ "./node_modules/uuid/
|
|
81005
|
+
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ "./node_modules/uuid/index.js");
|
|
81006
|
+
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);
|
|
81006
81007
|
/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! zen-observable-ts */ "../../node_modules/zen-observable-ts/lib/bundle.esm.js");
|
|
81007
81008
|
/* harmony import */ var _authModeStrategies__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../authModeStrategies */ "./lib-esm/authModeStrategies/index.js");
|
|
81008
81009
|
/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../predicates */ "./lib-esm/predicates/index.js");
|
|
@@ -82407,13 +82408,11 @@ function () {
|
|
|
82407
82408
|
|
|
82408
82409
|
|
|
82409
82410
|
var generateSnapshot = function generateSnapshot() {
|
|
82410
|
-
var _a;
|
|
82411
|
-
|
|
82412
82411
|
var isSynced = _this.sync.getModelSyncedStatus(model);
|
|
82413
82412
|
|
|
82414
82413
|
var itemsArray = __spread(Array.from(items.values()), Array.from(itemsChanged.values()));
|
|
82415
82414
|
|
|
82416
|
-
if (
|
|
82415
|
+
if (options === null || options === void 0 ? void 0 : options.sort) {
|
|
82417
82416
|
sortItems(itemsArray);
|
|
82418
82417
|
}
|
|
82419
82418
|
|
|
@@ -82461,12 +82460,12 @@ function () {
|
|
|
82461
82460
|
var hubCallback = function hubCallback(_a) {
|
|
82462
82461
|
var payload = _a.payload;
|
|
82463
82462
|
|
|
82464
|
-
var _b
|
|
82463
|
+
var _b;
|
|
82465
82464
|
|
|
82466
82465
|
var event = payload.event,
|
|
82467
82466
|
data = payload.data;
|
|
82468
82467
|
|
|
82469
|
-
if (event === _sync__WEBPACK_IMPORTED_MODULE_7__["ControlMessage"].SYNC_ENGINE_MODEL_SYNCED && ((
|
|
82468
|
+
if (event === _sync__WEBPACK_IMPORTED_MODULE_7__["ControlMessage"].SYNC_ENGINE_MODEL_SYNCED && ((_b = data === null || data === void 0 ? void 0 : data.model) === null || _b === void 0 ? void 0 : _b.name) === model.name) {
|
|
82470
82469
|
generateAndEmitSnapshot();
|
|
82471
82470
|
_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__["Hub"].remove('api', hubCallback);
|
|
82472
82471
|
}
|
|
@@ -92959,8 +92958,9 @@ function () {
|
|
|
92959
92958
|
}
|
|
92960
92959
|
|
|
92961
92960
|
var predicatesGroup = _predicates__WEBPACK_IMPORTED_MODULE_7__["ModelPredicateCreator"].getPredicates(_this.syncPredicates.get(modelDefinition), false);
|
|
92962
|
-
var _b =
|
|
92963
|
-
|
|
92961
|
+
var _b = data,
|
|
92962
|
+
_c = opName,
|
|
92963
|
+
record = _b[_c]; // checking incoming subscription against syncPredicate.
|
|
92964
92964
|
// once AppSync implements filters on subscriptions, we'll be
|
|
92965
92965
|
// able to set these when establishing the subscription instead.
|
|
92966
92966
|
// Until then, we'll need to filter inbound
|
|
@@ -93414,12 +93414,12 @@ function () {
|
|
|
93414
93414
|
}
|
|
93415
93415
|
|
|
93416
93416
|
return __awaiter(this, void 0, void 0, function () {
|
|
93417
|
-
var _a, opName, query, variables, modelAuthModes, readAuthModes, authModeAttempts, _authModeRetry, data, _b, opResult, items, newNextToken, startedAt;
|
|
93417
|
+
var _a, opName, query, variables, modelAuthModes, readAuthModes, authModeAttempts, _authModeRetry, data, _b, _c, opResult, items, newNextToken, startedAt;
|
|
93418
93418
|
|
|
93419
93419
|
var _this = this;
|
|
93420
93420
|
|
|
93421
|
-
return __generator(this, function (
|
|
93422
|
-
switch (
|
|
93421
|
+
return __generator(this, function (_d) {
|
|
93422
|
+
switch (_d.label) {
|
|
93423
93423
|
case 0:
|
|
93424
93424
|
_a = __read(this.typeQuery.get(modelDefinition), 2), opName = _a[0], query = _a[1];
|
|
93425
93425
|
variables = {
|
|
@@ -93438,7 +93438,7 @@ function () {
|
|
|
93438
93438
|
})];
|
|
93439
93439
|
|
|
93440
93440
|
case 1:
|
|
93441
|
-
modelAuthModes =
|
|
93441
|
+
modelAuthModes = _d.sent();
|
|
93442
93442
|
readAuthModes = modelAuthModes.READ;
|
|
93443
93443
|
authModeAttempts = 0;
|
|
93444
93444
|
|
|
@@ -93516,8 +93516,8 @@ function () {
|
|
|
93516
93516
|
, _authModeRetry()];
|
|
93517
93517
|
|
|
93518
93518
|
case 2:
|
|
93519
|
-
data =
|
|
93520
|
-
_b = opName, opResult =
|
|
93519
|
+
data = _d.sent().data;
|
|
93520
|
+
_b = data, _c = opName, opResult = _b[_c];
|
|
93521
93521
|
items = opResult.items, newNextToken = opResult.nextToken, startedAt = opResult.startedAt;
|
|
93522
93522
|
return [2
|
|
93523
93523
|
/*return*/
|
|
@@ -95024,7 +95024,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95024
95024
|
/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! buffer */ "../../node_modules/buffer/index.js");
|
|
95025
95025
|
/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_0__);
|
|
95026
95026
|
/* harmony import */ var ulid__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ulid */ "../../node_modules/ulid/dist/index.esm.js");
|
|
95027
|
-
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ "./node_modules/uuid/
|
|
95027
|
+
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ "./node_modules/uuid/index.js");
|
|
95028
|
+
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);
|
|
95028
95029
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./types */ "./lib-esm/types.js");
|
|
95029
95030
|
/* harmony import */ var amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! amazon-cognito-identity-js */ "../amazon-cognito-identity-js/es/index.js");
|
|
95030
95031
|
function _typeof(obj) {
|
|
@@ -95921,842 +95922,262 @@ function n(n){for(var t=arguments.length,r=Array(t>1?t-1:0),e=1;e<t;e++)r[e-1]=a
|
|
|
95921
95922
|
|
|
95922
95923
|
/***/ }),
|
|
95923
95924
|
|
|
95924
|
-
/***/ "./node_modules/uuid/
|
|
95925
|
-
|
|
95926
|
-
!*** ./node_modules/uuid/
|
|
95927
|
-
|
|
95928
|
-
/*!
|
|
95929
|
-
/***/ (function(module,
|
|
95930
|
-
|
|
95931
|
-
"use strict";
|
|
95932
|
-
__webpack_require__.r(__webpack_exports__);
|
|
95933
|
-
/* harmony import */ var _v1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v1.js */ "./node_modules/uuid/dist/esm-browser/v1.js");
|
|
95934
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "v1", function() { return _v1_js__WEBPACK_IMPORTED_MODULE_0__["default"]; });
|
|
95935
|
-
|
|
95936
|
-
/* harmony import */ var _v3_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./v3.js */ "./node_modules/uuid/dist/esm-browser/v3.js");
|
|
95937
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "v3", function() { return _v3_js__WEBPACK_IMPORTED_MODULE_1__["default"]; });
|
|
95938
|
-
|
|
95939
|
-
/* harmony import */ var _v4_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./v4.js */ "./node_modules/uuid/dist/esm-browser/v4.js");
|
|
95940
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "v4", function() { return _v4_js__WEBPACK_IMPORTED_MODULE_2__["default"]; });
|
|
95941
|
-
|
|
95942
|
-
/* harmony import */ var _v5_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./v5.js */ "./node_modules/uuid/dist/esm-browser/v5.js");
|
|
95943
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "v5", function() { return _v5_js__WEBPACK_IMPORTED_MODULE_3__["default"]; });
|
|
95944
|
-
|
|
95945
|
-
/* harmony import */ var _nil_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./nil.js */ "./node_modules/uuid/dist/esm-browser/nil.js");
|
|
95946
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NIL", function() { return _nil_js__WEBPACK_IMPORTED_MODULE_4__["default"]; });
|
|
95947
|
-
|
|
95948
|
-
/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./version.js */ "./node_modules/uuid/dist/esm-browser/version.js");
|
|
95949
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "version", function() { return _version_js__WEBPACK_IMPORTED_MODULE_5__["default"]; });
|
|
95950
|
-
|
|
95951
|
-
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./validate.js */ "./node_modules/uuid/dist/esm-browser/validate.js");
|
|
95952
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "validate", function() { return _validate_js__WEBPACK_IMPORTED_MODULE_6__["default"]; });
|
|
95953
|
-
|
|
95954
|
-
/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./stringify.js */ "./node_modules/uuid/dist/esm-browser/stringify.js");
|
|
95955
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "stringify", function() { return _stringify_js__WEBPACK_IMPORTED_MODULE_7__["default"]; });
|
|
95956
|
-
|
|
95957
|
-
/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./parse.js */ "./node_modules/uuid/dist/esm-browser/parse.js");
|
|
95958
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return _parse_js__WEBPACK_IMPORTED_MODULE_8__["default"]; });
|
|
95959
|
-
|
|
95960
|
-
|
|
95961
|
-
|
|
95962
|
-
|
|
95963
|
-
|
|
95964
|
-
|
|
95925
|
+
/***/ "./node_modules/uuid/index.js":
|
|
95926
|
+
/*!************************************!*\
|
|
95927
|
+
!*** ./node_modules/uuid/index.js ***!
|
|
95928
|
+
\************************************/
|
|
95929
|
+
/*! no static exports found */
|
|
95930
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
95965
95931
|
|
|
95932
|
+
var v1 = __webpack_require__(/*! ./v1 */ "./node_modules/uuid/v1.js");
|
|
95933
|
+
var v4 = __webpack_require__(/*! ./v4 */ "./node_modules/uuid/v4.js");
|
|
95966
95934
|
|
|
95935
|
+
var uuid = v4;
|
|
95936
|
+
uuid.v1 = v1;
|
|
95937
|
+
uuid.v4 = v4;
|
|
95967
95938
|
|
|
95939
|
+
module.exports = uuid;
|
|
95968
95940
|
|
|
95969
95941
|
|
|
95970
95942
|
/***/ }),
|
|
95971
95943
|
|
|
95972
|
-
/***/ "./node_modules/uuid/
|
|
95973
|
-
|
|
95974
|
-
!*** ./node_modules/uuid/
|
|
95975
|
-
|
|
95976
|
-
/*! exports
|
|
95977
|
-
/***/ (function(module,
|
|
95978
|
-
|
|
95979
|
-
"use strict";
|
|
95980
|
-
__webpack_require__.r(__webpack_exports__);
|
|
95981
|
-
/*
|
|
95982
|
-
* Browser-compatible JavaScript MD5
|
|
95983
|
-
*
|
|
95984
|
-
* Modification of JavaScript MD5
|
|
95985
|
-
* https://github.com/blueimp/JavaScript-MD5
|
|
95986
|
-
*
|
|
95987
|
-
* Copyright 2011, Sebastian Tschan
|
|
95988
|
-
* https://blueimp.net
|
|
95989
|
-
*
|
|
95990
|
-
* Licensed under the MIT license:
|
|
95991
|
-
* https://opensource.org/licenses/MIT
|
|
95992
|
-
*
|
|
95993
|
-
* Based on
|
|
95994
|
-
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
|
|
95995
|
-
* Digest Algorithm, as defined in RFC 1321.
|
|
95996
|
-
* Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
|
|
95997
|
-
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
|
|
95998
|
-
* Distributed under the BSD License
|
|
95999
|
-
* See http://pajhome.org.uk/crypt/md5 for more info.
|
|
96000
|
-
*/
|
|
96001
|
-
function md5(bytes) {
|
|
96002
|
-
if (typeof bytes === 'string') {
|
|
96003
|
-
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
|
|
96004
|
-
|
|
96005
|
-
bytes = new Uint8Array(msg.length);
|
|
96006
|
-
|
|
96007
|
-
for (var i = 0; i < msg.length; ++i) {
|
|
96008
|
-
bytes[i] = msg.charCodeAt(i);
|
|
96009
|
-
}
|
|
96010
|
-
}
|
|
96011
|
-
|
|
96012
|
-
return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));
|
|
96013
|
-
}
|
|
96014
|
-
/*
|
|
96015
|
-
* Convert an array of little-endian words to an array of bytes
|
|
96016
|
-
*/
|
|
96017
|
-
|
|
96018
|
-
|
|
96019
|
-
function md5ToHexEncodedArray(input) {
|
|
96020
|
-
var output = [];
|
|
96021
|
-
var length32 = input.length * 32;
|
|
96022
|
-
var hexTab = '0123456789abcdef';
|
|
96023
|
-
|
|
96024
|
-
for (var i = 0; i < length32; i += 8) {
|
|
96025
|
-
var x = input[i >> 5] >>> i % 32 & 0xff;
|
|
96026
|
-
var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);
|
|
96027
|
-
output.push(hex);
|
|
96028
|
-
}
|
|
95944
|
+
/***/ "./node_modules/uuid/lib/bytesToUuid.js":
|
|
95945
|
+
/*!**********************************************!*\
|
|
95946
|
+
!*** ./node_modules/uuid/lib/bytesToUuid.js ***!
|
|
95947
|
+
\**********************************************/
|
|
95948
|
+
/*! no static exports found */
|
|
95949
|
+
/***/ (function(module, exports) {
|
|
96029
95950
|
|
|
96030
|
-
return output;
|
|
96031
|
-
}
|
|
96032
95951
|
/**
|
|
96033
|
-
*
|
|
96034
|
-
|
|
96035
|
-
|
|
96036
|
-
|
|
96037
|
-
function getOutputLength(inputLength8) {
|
|
96038
|
-
return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;
|
|
96039
|
-
}
|
|
96040
|
-
/*
|
|
96041
|
-
* Calculate the MD5 of an array of little-endian words, and a bit length.
|
|
96042
|
-
*/
|
|
96043
|
-
|
|
96044
|
-
|
|
96045
|
-
function wordsToMd5(x, len) {
|
|
96046
|
-
/* append padding */
|
|
96047
|
-
x[len >> 5] |= 0x80 << len % 32;
|
|
96048
|
-
x[getOutputLength(len) - 1] = len;
|
|
96049
|
-
var a = 1732584193;
|
|
96050
|
-
var b = -271733879;
|
|
96051
|
-
var c = -1732584194;
|
|
96052
|
-
var d = 271733878;
|
|
96053
|
-
|
|
96054
|
-
for (var i = 0; i < x.length; i += 16) {
|
|
96055
|
-
var olda = a;
|
|
96056
|
-
var oldb = b;
|
|
96057
|
-
var oldc = c;
|
|
96058
|
-
var oldd = d;
|
|
96059
|
-
a = md5ff(a, b, c, d, x[i], 7, -680876936);
|
|
96060
|
-
d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);
|
|
96061
|
-
c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);
|
|
96062
|
-
b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
|
|
96063
|
-
a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);
|
|
96064
|
-
d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
|
|
96065
|
-
c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
|
|
96066
|
-
b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);
|
|
96067
|
-
a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
|
|
96068
|
-
d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
|
|
96069
|
-
c = md5ff(c, d, a, b, x[i + 10], 17, -42063);
|
|
96070
|
-
b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
|
|
96071
|
-
a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
|
|
96072
|
-
d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);
|
|
96073
|
-
c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
|
|
96074
|
-
b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
|
|
96075
|
-
a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);
|
|
96076
|
-
d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
|
|
96077
|
-
c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);
|
|
96078
|
-
b = md5gg(b, c, d, a, x[i], 20, -373897302);
|
|
96079
|
-
a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);
|
|
96080
|
-
d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);
|
|
96081
|
-
c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);
|
|
96082
|
-
b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);
|
|
96083
|
-
a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);
|
|
96084
|
-
d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
|
|
96085
|
-
c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);
|
|
96086
|
-
b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
|
|
96087
|
-
a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
|
|
96088
|
-
d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);
|
|
96089
|
-
c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
|
|
96090
|
-
b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
|
|
96091
|
-
a = md5hh(a, b, c, d, x[i + 5], 4, -378558);
|
|
96092
|
-
d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
|
|
96093
|
-
c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
|
|
96094
|
-
b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);
|
|
96095
|
-
a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
|
|
96096
|
-
d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
|
|
96097
|
-
c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);
|
|
96098
|
-
b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
|
|
96099
|
-
a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);
|
|
96100
|
-
d = md5hh(d, a, b, c, x[i], 11, -358537222);
|
|
96101
|
-
c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);
|
|
96102
|
-
b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);
|
|
96103
|
-
a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);
|
|
96104
|
-
d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);
|
|
96105
|
-
c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);
|
|
96106
|
-
b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);
|
|
96107
|
-
a = md5ii(a, b, c, d, x[i], 6, -198630844);
|
|
96108
|
-
d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
|
|
96109
|
-
c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
|
|
96110
|
-
b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);
|
|
96111
|
-
a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
|
|
96112
|
-
d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
|
|
96113
|
-
c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);
|
|
96114
|
-
b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
|
|
96115
|
-
a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
|
|
96116
|
-
d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);
|
|
96117
|
-
c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
|
|
96118
|
-
b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
|
|
96119
|
-
a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);
|
|
96120
|
-
d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
|
|
96121
|
-
c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);
|
|
96122
|
-
b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);
|
|
96123
|
-
a = safeAdd(a, olda);
|
|
96124
|
-
b = safeAdd(b, oldb);
|
|
96125
|
-
c = safeAdd(c, oldc);
|
|
96126
|
-
d = safeAdd(d, oldd);
|
|
96127
|
-
}
|
|
96128
|
-
|
|
96129
|
-
return [a, b, c, d];
|
|
96130
|
-
}
|
|
96131
|
-
/*
|
|
96132
|
-
* Convert an array bytes to an array of little-endian words
|
|
96133
|
-
* Characters >255 have their high-byte silently ignored.
|
|
96134
|
-
*/
|
|
96135
|
-
|
|
96136
|
-
|
|
96137
|
-
function bytesToWords(input) {
|
|
96138
|
-
if (input.length === 0) {
|
|
96139
|
-
return [];
|
|
96140
|
-
}
|
|
96141
|
-
|
|
96142
|
-
var length8 = input.length * 8;
|
|
96143
|
-
var output = new Uint32Array(getOutputLength(length8));
|
|
96144
|
-
|
|
96145
|
-
for (var i = 0; i < length8; i += 8) {
|
|
96146
|
-
output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
|
|
96147
|
-
}
|
|
96148
|
-
|
|
96149
|
-
return output;
|
|
96150
|
-
}
|
|
96151
|
-
/*
|
|
96152
|
-
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
|
|
96153
|
-
* to work around bugs in some JS interpreters.
|
|
96154
|
-
*/
|
|
96155
|
-
|
|
96156
|
-
|
|
96157
|
-
function safeAdd(x, y) {
|
|
96158
|
-
var lsw = (x & 0xffff) + (y & 0xffff);
|
|
96159
|
-
var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
|
96160
|
-
return msw << 16 | lsw & 0xffff;
|
|
96161
|
-
}
|
|
96162
|
-
/*
|
|
96163
|
-
* Bitwise rotate a 32-bit number to the left.
|
|
96164
|
-
*/
|
|
96165
|
-
|
|
96166
|
-
|
|
96167
|
-
function bitRotateLeft(num, cnt) {
|
|
96168
|
-
return num << cnt | num >>> 32 - cnt;
|
|
96169
|
-
}
|
|
96170
|
-
/*
|
|
96171
|
-
* These functions implement the four basic operations the algorithm uses.
|
|
95952
|
+
* Convert array of 16 byte values to UUID string format of the form:
|
|
95953
|
+
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
96172
95954
|
*/
|
|
96173
|
-
|
|
96174
|
-
|
|
96175
|
-
|
|
96176
|
-
return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
|
|
96177
|
-
}
|
|
96178
|
-
|
|
96179
|
-
function md5ff(a, b, c, d, x, s, t) {
|
|
96180
|
-
return md5cmn(b & c | ~b & d, a, b, x, s, t);
|
|
96181
|
-
}
|
|
96182
|
-
|
|
96183
|
-
function md5gg(a, b, c, d, x, s, t) {
|
|
96184
|
-
return md5cmn(b & d | c & ~d, a, b, x, s, t);
|
|
96185
|
-
}
|
|
96186
|
-
|
|
96187
|
-
function md5hh(a, b, c, d, x, s, t) {
|
|
96188
|
-
return md5cmn(b ^ c ^ d, a, b, x, s, t);
|
|
96189
|
-
}
|
|
96190
|
-
|
|
96191
|
-
function md5ii(a, b, c, d, x, s, t) {
|
|
96192
|
-
return md5cmn(c ^ (b | ~d), a, b, x, s, t);
|
|
95955
|
+
var byteToHex = [];
|
|
95956
|
+
for (var i = 0; i < 256; ++i) {
|
|
95957
|
+
byteToHex[i] = (i + 0x100).toString(16).substr(1);
|
|
96193
95958
|
}
|
|
96194
95959
|
|
|
96195
|
-
|
|
96196
|
-
|
|
96197
|
-
|
|
96198
|
-
|
|
96199
|
-
|
|
96200
|
-
|
|
96201
|
-
|
|
96202
|
-
|
|
96203
|
-
|
|
96204
|
-
|
|
96205
|
-
|
|
96206
|
-
|
|
96207
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96208
|
-
/* harmony default export */ __webpack_exports__["default"] = ('00000000-0000-0000-0000-000000000000');
|
|
96209
|
-
|
|
96210
|
-
/***/ }),
|
|
96211
|
-
|
|
96212
|
-
/***/ "./node_modules/uuid/dist/esm-browser/parse.js":
|
|
96213
|
-
/*!*****************************************************!*\
|
|
96214
|
-
!*** ./node_modules/uuid/dist/esm-browser/parse.js ***!
|
|
96215
|
-
\*****************************************************/
|
|
96216
|
-
/*! exports provided: default */
|
|
96217
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96218
|
-
|
|
96219
|
-
"use strict";
|
|
96220
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96221
|
-
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ "./node_modules/uuid/dist/esm-browser/validate.js");
|
|
96222
|
-
|
|
96223
|
-
|
|
96224
|
-
function parse(uuid) {
|
|
96225
|
-
if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) {
|
|
96226
|
-
throw TypeError('Invalid UUID');
|
|
96227
|
-
}
|
|
96228
|
-
|
|
96229
|
-
var v;
|
|
96230
|
-
var arr = new Uint8Array(16); // Parse ########-....-....-....-............
|
|
96231
|
-
|
|
96232
|
-
arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
|
|
96233
|
-
arr[1] = v >>> 16 & 0xff;
|
|
96234
|
-
arr[2] = v >>> 8 & 0xff;
|
|
96235
|
-
arr[3] = v & 0xff; // Parse ........-####-....-....-............
|
|
96236
|
-
|
|
96237
|
-
arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
|
|
96238
|
-
arr[5] = v & 0xff; // Parse ........-....-####-....-............
|
|
96239
|
-
|
|
96240
|
-
arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
|
|
96241
|
-
arr[7] = v & 0xff; // Parse ........-....-....-####-............
|
|
96242
|
-
|
|
96243
|
-
arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
|
|
96244
|
-
arr[9] = v & 0xff; // Parse ........-....-....-....-############
|
|
96245
|
-
// (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
|
|
96246
|
-
|
|
96247
|
-
arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
|
|
96248
|
-
arr[11] = v / 0x100000000 & 0xff;
|
|
96249
|
-
arr[12] = v >>> 24 & 0xff;
|
|
96250
|
-
arr[13] = v >>> 16 & 0xff;
|
|
96251
|
-
arr[14] = v >>> 8 & 0xff;
|
|
96252
|
-
arr[15] = v & 0xff;
|
|
96253
|
-
return arr;
|
|
95960
|
+
function bytesToUuid(buf, offset) {
|
|
95961
|
+
var i = offset || 0;
|
|
95962
|
+
var bth = byteToHex;
|
|
95963
|
+
// join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4
|
|
95964
|
+
return ([bth[buf[i++]], bth[buf[i++]],
|
|
95965
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
95966
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
95967
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
95968
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
95969
|
+
bth[buf[i++]], bth[buf[i++]],
|
|
95970
|
+
bth[buf[i++]], bth[buf[i++]],
|
|
95971
|
+
bth[buf[i++]], bth[buf[i++]]]).join('');
|
|
96254
95972
|
}
|
|
96255
95973
|
|
|
96256
|
-
|
|
96257
|
-
|
|
96258
|
-
/***/ }),
|
|
96259
|
-
|
|
96260
|
-
/***/ "./node_modules/uuid/dist/esm-browser/regex.js":
|
|
96261
|
-
/*!*****************************************************!*\
|
|
96262
|
-
!*** ./node_modules/uuid/dist/esm-browser/regex.js ***!
|
|
96263
|
-
\*****************************************************/
|
|
96264
|
-
/*! exports provided: default */
|
|
96265
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96266
|
-
|
|
96267
|
-
"use strict";
|
|
96268
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96269
|
-
/* harmony default export */ __webpack_exports__["default"] = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i);
|
|
96270
|
-
|
|
96271
|
-
/***/ }),
|
|
96272
|
-
|
|
96273
|
-
/***/ "./node_modules/uuid/dist/esm-browser/rng.js":
|
|
96274
|
-
/*!***************************************************!*\
|
|
96275
|
-
!*** ./node_modules/uuid/dist/esm-browser/rng.js ***!
|
|
96276
|
-
\***************************************************/
|
|
96277
|
-
/*! exports provided: default */
|
|
96278
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96279
|
-
|
|
96280
|
-
"use strict";
|
|
96281
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96282
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return rng; });
|
|
96283
|
-
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|
|
96284
|
-
// require the crypto API and do not support built-in fallback to lower quality random number
|
|
96285
|
-
// generators (like Math.random()).
|
|
96286
|
-
var getRandomValues;
|
|
96287
|
-
var rnds8 = new Uint8Array(16);
|
|
96288
|
-
function rng() {
|
|
96289
|
-
// lazy load so that environments that need to polyfill have a chance to do so
|
|
96290
|
-
if (!getRandomValues) {
|
|
96291
|
-
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also,
|
|
96292
|
-
// find the complete implementation of crypto (msCrypto) on IE11.
|
|
96293
|
-
getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);
|
|
96294
|
-
|
|
96295
|
-
if (!getRandomValues) {
|
|
96296
|
-
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
|
|
96297
|
-
}
|
|
96298
|
-
}
|
|
95974
|
+
module.exports = bytesToUuid;
|
|
96299
95975
|
|
|
96300
|
-
return getRandomValues(rnds8);
|
|
96301
|
-
}
|
|
96302
95976
|
|
|
96303
95977
|
/***/ }),
|
|
96304
95978
|
|
|
96305
|
-
/***/ "./node_modules/uuid/
|
|
96306
|
-
|
|
96307
|
-
!*** ./node_modules/uuid/
|
|
96308
|
-
|
|
96309
|
-
/*! exports
|
|
96310
|
-
/***/ (function(module,
|
|
96311
|
-
|
|
96312
|
-
"use strict";
|
|
96313
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96314
|
-
// Adapted from Chris Veness' SHA1 code at
|
|
96315
|
-
// http://www.movable-type.co.uk/scripts/sha1.html
|
|
96316
|
-
function f(s, x, y, z) {
|
|
96317
|
-
switch (s) {
|
|
96318
|
-
case 0:
|
|
96319
|
-
return x & y ^ ~x & z;
|
|
96320
|
-
|
|
96321
|
-
case 1:
|
|
96322
|
-
return x ^ y ^ z;
|
|
96323
|
-
|
|
96324
|
-
case 2:
|
|
96325
|
-
return x & y ^ x & z ^ y & z;
|
|
96326
|
-
|
|
96327
|
-
case 3:
|
|
96328
|
-
return x ^ y ^ z;
|
|
96329
|
-
}
|
|
96330
|
-
}
|
|
96331
|
-
|
|
96332
|
-
function ROTL(x, n) {
|
|
96333
|
-
return x << n | x >>> 32 - n;
|
|
96334
|
-
}
|
|
96335
|
-
|
|
96336
|
-
function sha1(bytes) {
|
|
96337
|
-
var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
|
|
96338
|
-
var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
|
|
96339
|
-
|
|
96340
|
-
if (typeof bytes === 'string') {
|
|
96341
|
-
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
|
|
96342
|
-
|
|
96343
|
-
bytes = [];
|
|
96344
|
-
|
|
96345
|
-
for (var i = 0; i < msg.length; ++i) {
|
|
96346
|
-
bytes.push(msg.charCodeAt(i));
|
|
96347
|
-
}
|
|
96348
|
-
} else if (!Array.isArray(bytes)) {
|
|
96349
|
-
// Convert Array-like to Array
|
|
96350
|
-
bytes = Array.prototype.slice.call(bytes);
|
|
96351
|
-
}
|
|
96352
|
-
|
|
96353
|
-
bytes.push(0x80);
|
|
96354
|
-
var l = bytes.length / 4 + 2;
|
|
96355
|
-
var N = Math.ceil(l / 16);
|
|
96356
|
-
var M = new Array(N);
|
|
96357
|
-
|
|
96358
|
-
for (var _i = 0; _i < N; ++_i) {
|
|
96359
|
-
var arr = new Uint32Array(16);
|
|
96360
|
-
|
|
96361
|
-
for (var j = 0; j < 16; ++j) {
|
|
96362
|
-
arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];
|
|
96363
|
-
}
|
|
96364
|
-
|
|
96365
|
-
M[_i] = arr;
|
|
96366
|
-
}
|
|
96367
|
-
|
|
96368
|
-
M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
|
|
96369
|
-
M[N - 1][14] = Math.floor(M[N - 1][14]);
|
|
96370
|
-
M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
|
|
95979
|
+
/***/ "./node_modules/uuid/lib/rng-browser.js":
|
|
95980
|
+
/*!**********************************************!*\
|
|
95981
|
+
!*** ./node_modules/uuid/lib/rng-browser.js ***!
|
|
95982
|
+
\**********************************************/
|
|
95983
|
+
/*! no static exports found */
|
|
95984
|
+
/***/ (function(module, exports) {
|
|
96371
95985
|
|
|
96372
|
-
|
|
96373
|
-
|
|
95986
|
+
// Unique ID creation requires a high quality random # generator. In the
|
|
95987
|
+
// browser this is a little complicated due to unknown quality of Math.random()
|
|
95988
|
+
// and inconsistent support for the `crypto` API. We do the best we can via
|
|
95989
|
+
// feature-detection
|
|
96374
95990
|
|
|
96375
|
-
|
|
96376
|
-
|
|
96377
|
-
|
|
95991
|
+
// getRandomValues needs to be invoked in a context where "this" is a Crypto
|
|
95992
|
+
// implementation. Also, find the complete implementation of crypto on IE11.
|
|
95993
|
+
var getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) ||
|
|
95994
|
+
(typeof(msCrypto) != 'undefined' && typeof window.msCrypto.getRandomValues == 'function' && msCrypto.getRandomValues.bind(msCrypto));
|
|
96378
95995
|
|
|
96379
|
-
|
|
96380
|
-
|
|
96381
|
-
|
|
95996
|
+
if (getRandomValues) {
|
|
95997
|
+
// WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto
|
|
95998
|
+
var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef
|
|
96382
95999
|
|
|
96383
|
-
|
|
96384
|
-
|
|
96385
|
-
|
|
96386
|
-
|
|
96387
|
-
|
|
96000
|
+
module.exports = function whatwgRNG() {
|
|
96001
|
+
getRandomValues(rnds8);
|
|
96002
|
+
return rnds8;
|
|
96003
|
+
};
|
|
96004
|
+
} else {
|
|
96005
|
+
// Math.random()-based (RNG)
|
|
96006
|
+
//
|
|
96007
|
+
// If all else fails, use Math.random(). It's fast, but is of unspecified
|
|
96008
|
+
// quality.
|
|
96009
|
+
var rnds = new Array(16);
|
|
96388
96010
|
|
|
96389
|
-
|
|
96390
|
-
|
|
96391
|
-
|
|
96392
|
-
|
|
96393
|
-
d = c;
|
|
96394
|
-
c = ROTL(b, 30) >>> 0;
|
|
96395
|
-
b = a;
|
|
96396
|
-
a = T;
|
|
96011
|
+
module.exports = function mathRNG() {
|
|
96012
|
+
for (var i = 0, r; i < 16; i++) {
|
|
96013
|
+
if ((i & 0x03) === 0) r = Math.random() * 0x100000000;
|
|
96014
|
+
rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;
|
|
96397
96015
|
}
|
|
96398
96016
|
|
|
96399
|
-
|
|
96400
|
-
|
|
96401
|
-
H[2] = H[2] + c >>> 0;
|
|
96402
|
-
H[3] = H[3] + d >>> 0;
|
|
96403
|
-
H[4] = H[4] + e >>> 0;
|
|
96404
|
-
}
|
|
96405
|
-
|
|
96406
|
-
return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
|
|
96407
|
-
}
|
|
96408
|
-
|
|
96409
|
-
/* harmony default export */ __webpack_exports__["default"] = (sha1);
|
|
96410
|
-
|
|
96411
|
-
/***/ }),
|
|
96412
|
-
|
|
96413
|
-
/***/ "./node_modules/uuid/dist/esm-browser/stringify.js":
|
|
96414
|
-
/*!*********************************************************!*\
|
|
96415
|
-
!*** ./node_modules/uuid/dist/esm-browser/stringify.js ***!
|
|
96416
|
-
\*********************************************************/
|
|
96417
|
-
/*! exports provided: default */
|
|
96418
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96419
|
-
|
|
96420
|
-
"use strict";
|
|
96421
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96422
|
-
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ "./node_modules/uuid/dist/esm-browser/validate.js");
|
|
96423
|
-
|
|
96424
|
-
/**
|
|
96425
|
-
* Convert array of 16 byte values to UUID string format of the form:
|
|
96426
|
-
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
96427
|
-
*/
|
|
96428
|
-
|
|
96429
|
-
var byteToHex = [];
|
|
96430
|
-
|
|
96431
|
-
for (var i = 0; i < 256; ++i) {
|
|
96432
|
-
byteToHex.push((i + 0x100).toString(16).substr(1));
|
|
96433
|
-
}
|
|
96434
|
-
|
|
96435
|
-
function stringify(arr) {
|
|
96436
|
-
var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
|
|
96437
|
-
// Note: Be careful editing this code! It's been tuned for performance
|
|
96438
|
-
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
|
96439
|
-
var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
|
|
96440
|
-
// of the following:
|
|
96441
|
-
// - One or more input array values don't map to a hex octet (leading to
|
|
96442
|
-
// "undefined" in the uuid)
|
|
96443
|
-
// - Invalid input values for the RFC `version` or `variant` fields
|
|
96444
|
-
|
|
96445
|
-
if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) {
|
|
96446
|
-
throw TypeError('Stringified UUID is invalid');
|
|
96447
|
-
}
|
|
96448
|
-
|
|
96449
|
-
return uuid;
|
|
96017
|
+
return rnds;
|
|
96018
|
+
};
|
|
96450
96019
|
}
|
|
96451
96020
|
|
|
96452
|
-
/* harmony default export */ __webpack_exports__["default"] = (stringify);
|
|
96453
96021
|
|
|
96454
96022
|
/***/ }),
|
|
96455
96023
|
|
|
96456
|
-
/***/ "./node_modules/uuid/
|
|
96457
|
-
|
|
96458
|
-
!*** ./node_modules/uuid/
|
|
96459
|
-
|
|
96460
|
-
/*! exports
|
|
96461
|
-
/***/ (function(module,
|
|
96024
|
+
/***/ "./node_modules/uuid/v1.js":
|
|
96025
|
+
/*!*********************************!*\
|
|
96026
|
+
!*** ./node_modules/uuid/v1.js ***!
|
|
96027
|
+
\*********************************/
|
|
96028
|
+
/*! no static exports found */
|
|
96029
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
96462
96030
|
|
|
96463
|
-
|
|
96464
|
-
__webpack_require__.
|
|
96465
|
-
/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ "./node_modules/uuid/dist/esm-browser/rng.js");
|
|
96466
|
-
/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ "./node_modules/uuid/dist/esm-browser/stringify.js");
|
|
96031
|
+
var rng = __webpack_require__(/*! ./lib/rng */ "./node_modules/uuid/lib/rng-browser.js");
|
|
96032
|
+
var bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ "./node_modules/uuid/lib/bytesToUuid.js");
|
|
96467
96033
|
|
|
96468
|
-
|
|
96034
|
+
// **`v1()` - Generate time-based UUID**
|
|
96469
96035
|
//
|
|
96470
96036
|
// Inspired by https://github.com/LiosK/UUID.js
|
|
96471
96037
|
// and http://docs.python.org/library/uuid.html
|
|
96472
96038
|
|
|
96473
96039
|
var _nodeId;
|
|
96040
|
+
var _clockseq;
|
|
96474
96041
|
|
|
96475
|
-
|
|
96476
|
-
|
|
96477
|
-
|
|
96042
|
+
// Previous uuid creation time
|
|
96478
96043
|
var _lastMSecs = 0;
|
|
96479
|
-
var _lastNSecs = 0;
|
|
96044
|
+
var _lastNSecs = 0;
|
|
96480
96045
|
|
|
96046
|
+
// See https://github.com/broofa/node-uuid for API details
|
|
96481
96047
|
function v1(options, buf, offset) {
|
|
96482
96048
|
var i = buf && offset || 0;
|
|
96483
|
-
var b = buf ||
|
|
96049
|
+
var b = buf || [];
|
|
96050
|
+
|
|
96484
96051
|
options = options || {};
|
|
96485
96052
|
var node = options.node || _nodeId;
|
|
96486
|
-
var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;
|
|
96053
|
+
var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;
|
|
96054
|
+
|
|
96055
|
+
// node and clockseq need to be initialized to random values if they're not
|
|
96487
96056
|
// specified. We do this lazily to minimize issues related to insufficient
|
|
96488
96057
|
// system entropy. See #189
|
|
96489
|
-
|
|
96490
96058
|
if (node == null || clockseq == null) {
|
|
96491
|
-
var seedBytes =
|
|
96492
|
-
|
|
96059
|
+
var seedBytes = rng();
|
|
96493
96060
|
if (node == null) {
|
|
96494
96061
|
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
|
|
96495
|
-
node = _nodeId = [
|
|
96062
|
+
node = _nodeId = [
|
|
96063
|
+
seedBytes[0] | 0x01,
|
|
96064
|
+
seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]
|
|
96065
|
+
];
|
|
96496
96066
|
}
|
|
96497
|
-
|
|
96498
96067
|
if (clockseq == null) {
|
|
96499
96068
|
// Per 4.2.2, randomize (14 bit) clockseq
|
|
96500
96069
|
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
|
|
96501
96070
|
}
|
|
96502
|
-
}
|
|
96071
|
+
}
|
|
96072
|
+
|
|
96073
|
+
// UUID timestamps are 100 nano-second units since the Gregorian epoch,
|
|
96503
96074
|
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
|
|
96504
96075
|
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
|
|
96505
96076
|
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
|
|
96077
|
+
var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();
|
|
96506
96078
|
|
|
96507
|
-
|
|
96508
|
-
var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
|
|
96079
|
+
// Per 4.2.1.2, use count of uuid's generated during the current clock
|
|
96509
96080
|
// cycle to simulate higher resolution clock
|
|
96081
|
+
var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;
|
|
96510
96082
|
|
|
96511
|
-
|
|
96512
|
-
|
|
96513
|
-
var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
|
|
96083
|
+
// Time since last uuid creation (in msecs)
|
|
96084
|
+
var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;
|
|
96514
96085
|
|
|
96086
|
+
// Per 4.2.1.2, Bump clockseq on clock regression
|
|
96515
96087
|
if (dt < 0 && options.clockseq === undefined) {
|
|
96516
96088
|
clockseq = clockseq + 1 & 0x3fff;
|
|
96517
|
-
}
|
|
96518
|
-
// time interval
|
|
96519
|
-
|
|
96089
|
+
}
|
|
96520
96090
|
|
|
96091
|
+
// Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
|
|
96092
|
+
// time interval
|
|
96521
96093
|
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
|
|
96522
96094
|
nsecs = 0;
|
|
96523
|
-
}
|
|
96524
|
-
|
|
96095
|
+
}
|
|
96525
96096
|
|
|
96097
|
+
// Per 4.2.1.2 Throw error if too many uuids are requested
|
|
96526
96098
|
if (nsecs >= 10000) {
|
|
96527
|
-
throw new Error(
|
|
96099
|
+
throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec');
|
|
96528
96100
|
}
|
|
96529
96101
|
|
|
96530
96102
|
_lastMSecs = msecs;
|
|
96531
96103
|
_lastNSecs = nsecs;
|
|
96532
|
-
_clockseq = clockseq;
|
|
96104
|
+
_clockseq = clockseq;
|
|
96533
96105
|
|
|
96534
|
-
|
|
96106
|
+
// Per 4.1.4 - Convert from unix epoch to Gregorian epoch
|
|
96107
|
+
msecs += 12219292800000;
|
|
96535
96108
|
|
|
96109
|
+
// `time_low`
|
|
96536
96110
|
var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
|
|
96537
96111
|
b[i++] = tl >>> 24 & 0xff;
|
|
96538
96112
|
b[i++] = tl >>> 16 & 0xff;
|
|
96539
96113
|
b[i++] = tl >>> 8 & 0xff;
|
|
96540
|
-
b[i++] = tl & 0xff;
|
|
96114
|
+
b[i++] = tl & 0xff;
|
|
96541
96115
|
|
|
96542
|
-
|
|
96116
|
+
// `time_mid`
|
|
96117
|
+
var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;
|
|
96543
96118
|
b[i++] = tmh >>> 8 & 0xff;
|
|
96544
|
-
b[i++] = tmh & 0xff;
|
|
96119
|
+
b[i++] = tmh & 0xff;
|
|
96545
96120
|
|
|
96121
|
+
// `time_high_and_version`
|
|
96546
96122
|
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
|
|
96123
|
+
b[i++] = tmh >>> 16 & 0xff;
|
|
96547
96124
|
|
|
96548
|
-
|
|
96549
|
-
|
|
96550
|
-
b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
|
|
96125
|
+
// `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
|
|
96126
|
+
b[i++] = clockseq >>> 8 | 0x80;
|
|
96551
96127
|
|
|
96552
|
-
|
|
96128
|
+
// `clock_seq_low`
|
|
96129
|
+
b[i++] = clockseq & 0xff;
|
|
96553
96130
|
|
|
96131
|
+
// `node`
|
|
96554
96132
|
for (var n = 0; n < 6; ++n) {
|
|
96555
96133
|
b[i + n] = node[n];
|
|
96556
96134
|
}
|
|
96557
96135
|
|
|
96558
|
-
return buf
|
|
96136
|
+
return buf ? buf : bytesToUuid(b);
|
|
96559
96137
|
}
|
|
96560
96138
|
|
|
96561
|
-
|
|
96562
|
-
|
|
96563
|
-
/***/ }),
|
|
96564
|
-
|
|
96565
|
-
/***/ "./node_modules/uuid/dist/esm-browser/v3.js":
|
|
96566
|
-
/*!**************************************************!*\
|
|
96567
|
-
!*** ./node_modules/uuid/dist/esm-browser/v3.js ***!
|
|
96568
|
-
\**************************************************/
|
|
96569
|
-
/*! exports provided: default */
|
|
96570
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96571
|
-
|
|
96572
|
-
"use strict";
|
|
96573
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96574
|
-
/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ "./node_modules/uuid/dist/esm-browser/v35.js");
|
|
96575
|
-
/* harmony import */ var _md5_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./md5.js */ "./node_modules/uuid/dist/esm-browser/md5.js");
|
|
96576
|
-
|
|
96139
|
+
module.exports = v1;
|
|
96577
96140
|
|
|
96578
|
-
var v3 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__["default"])('v3', 0x30, _md5_js__WEBPACK_IMPORTED_MODULE_1__["default"]);
|
|
96579
|
-
/* harmony default export */ __webpack_exports__["default"] = (v3);
|
|
96580
96141
|
|
|
96581
96142
|
/***/ }),
|
|
96582
96143
|
|
|
96583
|
-
/***/ "./node_modules/uuid/
|
|
96584
|
-
|
|
96585
|
-
!*** ./node_modules/uuid/
|
|
96586
|
-
|
|
96587
|
-
/*!
|
|
96588
|
-
/***/ (function(module,
|
|
96589
|
-
|
|
96590
|
-
"use strict";
|
|
96591
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96592
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DNS", function() { return DNS; });
|
|
96593
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "URL", function() { return URL; });
|
|
96594
|
-
/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stringify.js */ "./node_modules/uuid/dist/esm-browser/stringify.js");
|
|
96595
|
-
/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse.js */ "./node_modules/uuid/dist/esm-browser/parse.js");
|
|
96596
|
-
|
|
96597
|
-
|
|
96144
|
+
/***/ "./node_modules/uuid/v4.js":
|
|
96145
|
+
/*!*********************************!*\
|
|
96146
|
+
!*** ./node_modules/uuid/v4.js ***!
|
|
96147
|
+
\*********************************/
|
|
96148
|
+
/*! no static exports found */
|
|
96149
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
96598
96150
|
|
|
96599
|
-
|
|
96600
|
-
|
|
96151
|
+
var rng = __webpack_require__(/*! ./lib/rng */ "./node_modules/uuid/lib/rng-browser.js");
|
|
96152
|
+
var bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ "./node_modules/uuid/lib/bytesToUuid.js");
|
|
96601
96153
|
|
|
96602
|
-
|
|
96154
|
+
function v4(options, buf, offset) {
|
|
96155
|
+
var i = buf && offset || 0;
|
|
96603
96156
|
|
|
96604
|
-
|
|
96605
|
-
|
|
96157
|
+
if (typeof(options) == 'string') {
|
|
96158
|
+
buf = options === 'binary' ? new Array(16) : null;
|
|
96159
|
+
options = null;
|
|
96606
96160
|
}
|
|
96607
|
-
|
|
96608
|
-
return bytes;
|
|
96609
|
-
}
|
|
96610
|
-
|
|
96611
|
-
var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
|
|
96612
|
-
var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
|
|
96613
|
-
/* harmony default export */ __webpack_exports__["default"] = (function (name, version, hashfunc) {
|
|
96614
|
-
function generateUUID(value, namespace, buf, offset) {
|
|
96615
|
-
if (typeof value === 'string') {
|
|
96616
|
-
value = stringToBytes(value);
|
|
96617
|
-
}
|
|
96618
|
-
|
|
96619
|
-
if (typeof namespace === 'string') {
|
|
96620
|
-
namespace = Object(_parse_js__WEBPACK_IMPORTED_MODULE_1__["default"])(namespace);
|
|
96621
|
-
}
|
|
96622
|
-
|
|
96623
|
-
if (namespace.length !== 16) {
|
|
96624
|
-
throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
|
|
96625
|
-
} // Compute hash of namespace and value, Per 4.3
|
|
96626
|
-
// Future: Use spread syntax when supported on all platforms, e.g. `bytes =
|
|
96627
|
-
// hashfunc([...namespace, ... value])`
|
|
96628
|
-
|
|
96629
|
-
|
|
96630
|
-
var bytes = new Uint8Array(16 + value.length);
|
|
96631
|
-
bytes.set(namespace);
|
|
96632
|
-
bytes.set(value, namespace.length);
|
|
96633
|
-
bytes = hashfunc(bytes);
|
|
96634
|
-
bytes[6] = bytes[6] & 0x0f | version;
|
|
96635
|
-
bytes[8] = bytes[8] & 0x3f | 0x80;
|
|
96636
|
-
|
|
96637
|
-
if (buf) {
|
|
96638
|
-
offset = offset || 0;
|
|
96639
|
-
|
|
96640
|
-
for (var i = 0; i < 16; ++i) {
|
|
96641
|
-
buf[offset + i] = bytes[i];
|
|
96642
|
-
}
|
|
96643
|
-
|
|
96644
|
-
return buf;
|
|
96645
|
-
}
|
|
96646
|
-
|
|
96647
|
-
return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_0__["default"])(bytes);
|
|
96648
|
-
} // Function#name is not settable on some platforms (#270)
|
|
96649
|
-
|
|
96650
|
-
|
|
96651
|
-
try {
|
|
96652
|
-
generateUUID.name = name; // eslint-disable-next-line no-empty
|
|
96653
|
-
} catch (err) {} // For CommonJS default export support
|
|
96654
|
-
|
|
96655
|
-
|
|
96656
|
-
generateUUID.DNS = DNS;
|
|
96657
|
-
generateUUID.URL = URL;
|
|
96658
|
-
return generateUUID;
|
|
96659
|
-
});
|
|
96660
|
-
|
|
96661
|
-
/***/ }),
|
|
96662
|
-
|
|
96663
|
-
/***/ "./node_modules/uuid/dist/esm-browser/v4.js":
|
|
96664
|
-
/*!**************************************************!*\
|
|
96665
|
-
!*** ./node_modules/uuid/dist/esm-browser/v4.js ***!
|
|
96666
|
-
\**************************************************/
|
|
96667
|
-
/*! exports provided: default */
|
|
96668
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96669
|
-
|
|
96670
|
-
"use strict";
|
|
96671
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96672
|
-
/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ "./node_modules/uuid/dist/esm-browser/rng.js");
|
|
96673
|
-
/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ "./node_modules/uuid/dist/esm-browser/stringify.js");
|
|
96674
|
-
|
|
96675
|
-
|
|
96676
|
-
|
|
96677
|
-
function v4(options, buf, offset) {
|
|
96678
96161
|
options = options || {};
|
|
96679
|
-
var rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__["default"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
|
96680
96162
|
|
|
96681
|
-
rnds
|
|
96682
|
-
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
|
|
96163
|
+
var rnds = options.random || (options.rng || rng)();
|
|
96683
96164
|
|
|
96684
|
-
|
|
96685
|
-
|
|
96165
|
+
// Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
|
96166
|
+
rnds[6] = (rnds[6] & 0x0f) | 0x40;
|
|
96167
|
+
rnds[8] = (rnds[8] & 0x3f) | 0x80;
|
|
96686
96168
|
|
|
96687
|
-
|
|
96688
|
-
|
|
96169
|
+
// Copy bytes to buffer, if provided
|
|
96170
|
+
if (buf) {
|
|
96171
|
+
for (var ii = 0; ii < 16; ++ii) {
|
|
96172
|
+
buf[i + ii] = rnds[ii];
|
|
96689
96173
|
}
|
|
96690
|
-
|
|
96691
|
-
return buf;
|
|
96692
96174
|
}
|
|
96693
96175
|
|
|
96694
|
-
return
|
|
96695
|
-
}
|
|
96696
|
-
|
|
96697
|
-
/* harmony default export */ __webpack_exports__["default"] = (v4);
|
|
96698
|
-
|
|
96699
|
-
/***/ }),
|
|
96700
|
-
|
|
96701
|
-
/***/ "./node_modules/uuid/dist/esm-browser/v5.js":
|
|
96702
|
-
/*!**************************************************!*\
|
|
96703
|
-
!*** ./node_modules/uuid/dist/esm-browser/v5.js ***!
|
|
96704
|
-
\**************************************************/
|
|
96705
|
-
/*! exports provided: default */
|
|
96706
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96707
|
-
|
|
96708
|
-
"use strict";
|
|
96709
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96710
|
-
/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ "./node_modules/uuid/dist/esm-browser/v35.js");
|
|
96711
|
-
/* harmony import */ var _sha1_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sha1.js */ "./node_modules/uuid/dist/esm-browser/sha1.js");
|
|
96712
|
-
|
|
96713
|
-
|
|
96714
|
-
var v5 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__["default"])('v5', 0x50, _sha1_js__WEBPACK_IMPORTED_MODULE_1__["default"]);
|
|
96715
|
-
/* harmony default export */ __webpack_exports__["default"] = (v5);
|
|
96716
|
-
|
|
96717
|
-
/***/ }),
|
|
96718
|
-
|
|
96719
|
-
/***/ "./node_modules/uuid/dist/esm-browser/validate.js":
|
|
96720
|
-
/*!********************************************************!*\
|
|
96721
|
-
!*** ./node_modules/uuid/dist/esm-browser/validate.js ***!
|
|
96722
|
-
\********************************************************/
|
|
96723
|
-
/*! exports provided: default */
|
|
96724
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96725
|
-
|
|
96726
|
-
"use strict";
|
|
96727
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96728
|
-
/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ "./node_modules/uuid/dist/esm-browser/regex.js");
|
|
96729
|
-
|
|
96730
|
-
|
|
96731
|
-
function validate(uuid) {
|
|
96732
|
-
return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__["default"].test(uuid);
|
|
96176
|
+
return buf || bytesToUuid(rnds);
|
|
96733
96177
|
}
|
|
96734
96178
|
|
|
96735
|
-
|
|
96736
|
-
|
|
96737
|
-
/***/ }),
|
|
96738
|
-
|
|
96739
|
-
/***/ "./node_modules/uuid/dist/esm-browser/version.js":
|
|
96740
|
-
/*!*******************************************************!*\
|
|
96741
|
-
!*** ./node_modules/uuid/dist/esm-browser/version.js ***!
|
|
96742
|
-
\*******************************************************/
|
|
96743
|
-
/*! exports provided: default */
|
|
96744
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
96745
|
-
|
|
96746
|
-
"use strict";
|
|
96747
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96748
|
-
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ "./node_modules/uuid/dist/esm-browser/validate.js");
|
|
96749
|
-
|
|
96750
|
-
|
|
96751
|
-
function version(uuid) {
|
|
96752
|
-
if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) {
|
|
96753
|
-
throw TypeError('Invalid UUID');
|
|
96754
|
-
}
|
|
96755
|
-
|
|
96756
|
-
return parseInt(uuid.substr(14, 1), 16);
|
|
96757
|
-
}
|
|
96179
|
+
module.exports = v4;
|
|
96758
96180
|
|
|
96759
|
-
/* harmony default export */ __webpack_exports__["default"] = (version);
|
|
96760
96181
|
|
|
96761
96182
|
/***/ }),
|
|
96762
96183
|
|