@revolugo/elements 4.16.10-beta.2 → 4.16.10-beta.3

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.
@@ -9080,1080 +9080,1240 @@ function isKey(value, object) {
9080
9080
 
9081
9081
  /***/ }),
9082
9082
 
9083
- /***/ "79aa":
9083
+ /***/ "797e":
9084
9084
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9085
9085
 
9086
9086
  "use strict";
9087
9087
 
9088
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js + 6 modules
9089
- var _ListCache = __webpack_require__("dd3c");
9090
-
9091
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
9088
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayMap.js
9089
+ var _arrayMap = __webpack_require__("8db3");
9092
9090
 
9091
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js + 5 modules
9092
+ var _Stack = __webpack_require__("79aa");
9093
9093
 
9094
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayEach.js
9094
9095
  /**
9095
- * Removes all key-value entries from the stack.
9096
+ * A specialized version of `_.forEach` for arrays without support for
9097
+ * iteratee shorthands.
9096
9098
  *
9097
9099
  * @private
9098
- * @name clear
9099
- * @memberOf Stack
9100
+ * @param {Array} [array] The array to iterate over.
9101
+ * @param {Function} iteratee The function invoked per iteration.
9102
+ * @returns {Array} Returns `array`.
9100
9103
  */
9101
- function stackClear() {
9102
- this.__data__ = new _ListCache["a" /* default */];
9103
- this.size = 0;
9104
+ function arrayEach(array, iteratee) {
9105
+ var index = -1,
9106
+ length = array == null ? 0 : array.length;
9107
+
9108
+ while (++index < length) {
9109
+ if (iteratee(array[index], index, array) === false) {
9110
+ break;
9111
+ }
9112
+ }
9113
+ return array;
9104
9114
  }
9105
9115
 
9106
- /* harmony default export */ var _stackClear = (stackClear);
9116
+ /* harmony default export */ var _arrayEach = (arrayEach);
9107
9117
 
9108
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
9109
- /**
9110
- * Removes `key` and its value from the stack.
9111
- *
9112
- * @private
9113
- * @name delete
9114
- * @memberOf Stack
9115
- * @param {string} key The key of the value to remove.
9116
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
9117
- */
9118
- function stackDelete(key) {
9119
- var data = this.__data__,
9120
- result = data['delete'](key);
9118
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
9119
+ var _assignValue = __webpack_require__("9eea");
9120
+
9121
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
9122
+ var _copyObject = __webpack_require__("a93e");
9123
+
9124
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keys.js
9125
+ var keys = __webpack_require__("fcdfe");
9126
+
9127
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssign.js
9121
9128
 
9122
- this.size = data.size;
9123
- return result;
9124
- }
9125
9129
 
9126
- /* harmony default export */ var _stackDelete = (stackDelete);
9127
9130
 
9128
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
9129
9131
  /**
9130
- * Gets the stack value for `key`.
9132
+ * The base implementation of `_.assign` without support for multiple sources
9133
+ * or `customizer` functions.
9131
9134
  *
9132
9135
  * @private
9133
- * @name get
9134
- * @memberOf Stack
9135
- * @param {string} key The key of the value to get.
9136
- * @returns {*} Returns the entry value.
9136
+ * @param {Object} object The destination object.
9137
+ * @param {Object} source The source object.
9138
+ * @returns {Object} Returns `object`.
9137
9139
  */
9138
- function stackGet(key) {
9139
- return this.__data__.get(key);
9140
+ function baseAssign(object, source) {
9141
+ return object && Object(_copyObject["a" /* default */])(source, Object(keys["a" /* default */])(source), object);
9140
9142
  }
9141
9143
 
9142
- /* harmony default export */ var _stackGet = (stackGet);
9144
+ /* harmony default export */ var _baseAssign = (baseAssign);
9145
+
9146
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js + 2 modules
9147
+ var keysIn = __webpack_require__("94d2");
9148
+
9149
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignIn.js
9150
+
9151
+
9143
9152
 
9144
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
9145
9153
  /**
9146
- * Checks if a stack value for `key` exists.
9154
+ * The base implementation of `_.assignIn` without support for multiple sources
9155
+ * or `customizer` functions.
9147
9156
  *
9148
9157
  * @private
9149
- * @name has
9150
- * @memberOf Stack
9151
- * @param {string} key The key of the entry to check.
9152
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
9158
+ * @param {Object} object The destination object.
9159
+ * @param {Object} source The source object.
9160
+ * @returns {Object} Returns `object`.
9153
9161
  */
9154
- function stackHas(key) {
9155
- return this.__data__.has(key);
9162
+ function baseAssignIn(object, source) {
9163
+ return object && Object(_copyObject["a" /* default */])(source, Object(keysIn["a" /* default */])(source), object);
9156
9164
  }
9157
9165
 
9158
- /* harmony default export */ var _stackHas = (stackHas);
9159
-
9160
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
9161
- var _Map = __webpack_require__("c384");
9166
+ /* harmony default export */ var _baseAssignIn = (baseAssignIn);
9162
9167
 
9163
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js + 14 modules
9164
- var _MapCache = __webpack_require__("63e6");
9168
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneBuffer.js
9169
+ var _cloneBuffer = __webpack_require__("dbfc");
9165
9170
 
9166
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
9171
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
9172
+ var _copyArray = __webpack_require__("fd6e");
9167
9173
 
9174
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getSymbols.js + 1 modules
9175
+ var _getSymbols = __webpack_require__("064b");
9168
9176
 
9177
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copySymbols.js
9169
9178
 
9170
9179
 
9171
- /** Used as the size to enable large array optimizations. */
9172
- var LARGE_ARRAY_SIZE = 200;
9173
9180
 
9174
9181
  /**
9175
- * Sets the stack `key` to `value`.
9182
+ * Copies own symbols of `source` to `object`.
9176
9183
  *
9177
9184
  * @private
9178
- * @name set
9179
- * @memberOf Stack
9180
- * @param {string} key The key of the value to set.
9181
- * @param {*} value The value to set.
9182
- * @returns {Object} Returns the stack cache instance.
9185
+ * @param {Object} source The object to copy symbols from.
9186
+ * @param {Object} [object={}] The object to copy symbols to.
9187
+ * @returns {Object} Returns `object`.
9183
9188
  */
9184
- function stackSet(key, value) {
9185
- var data = this.__data__;
9186
- if (data instanceof _ListCache["a" /* default */]) {
9187
- var pairs = data.__data__;
9188
- if (!_Map["a" /* default */] || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
9189
- pairs.push([key, value]);
9190
- this.size = ++data.size;
9191
- return this;
9192
- }
9193
- data = this.__data__ = new _MapCache["a" /* default */](pairs);
9194
- }
9195
- data.set(key, value);
9196
- this.size = data.size;
9197
- return this;
9189
+ function copySymbols(source, object) {
9190
+ return Object(_copyObject["a" /* default */])(source, Object(_getSymbols["a" /* default */])(source), object);
9198
9191
  }
9199
9192
 
9200
- /* harmony default export */ var _stackSet = (stackSet);
9201
-
9202
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
9203
-
9204
-
9193
+ /* harmony default export */ var _copySymbols = (copySymbols);
9205
9194
 
9195
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getSymbolsIn.js
9196
+ var _getSymbolsIn = __webpack_require__("602f");
9206
9197
 
9198
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copySymbolsIn.js
9207
9199
 
9208
9200
 
9209
9201
 
9210
9202
  /**
9211
- * Creates a stack cache object to store key-value pairs.
9203
+ * Copies own and inherited symbols of `source` to `object`.
9212
9204
  *
9213
9205
  * @private
9214
- * @constructor
9215
- * @param {Array} [entries] The key-value pairs to cache.
9206
+ * @param {Object} source The object to copy symbols from.
9207
+ * @param {Object} [object={}] The object to copy symbols to.
9208
+ * @returns {Object} Returns `object`.
9216
9209
  */
9217
- function Stack(entries) {
9218
- var data = this.__data__ = new _ListCache["a" /* default */](entries);
9219
- this.size = data.size;
9210
+ function copySymbolsIn(source, object) {
9211
+ return Object(_copyObject["a" /* default */])(source, Object(_getSymbolsIn["a" /* default */])(source), object);
9220
9212
  }
9221
9213
 
9222
- // Add methods to `Stack`.
9223
- Stack.prototype.clear = _stackClear;
9224
- Stack.prototype['delete'] = _stackDelete;
9225
- Stack.prototype.get = _stackGet;
9226
- Stack.prototype.has = _stackHas;
9227
- Stack.prototype.set = _stackSet;
9228
-
9229
- /* harmony default export */ var _Stack = __webpack_exports__["a"] = (Stack);
9230
-
9231
-
9232
- /***/ }),
9214
+ /* harmony default export */ var _copySymbolsIn = (copySymbolsIn);
9233
9215
 
9234
- /***/ "7aea":
9235
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9216
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeys.js
9217
+ var _getAllKeys = __webpack_require__("7fc9");
9236
9218
 
9237
- "use strict";
9238
- /* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("5fa7");
9239
- /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("aabe");
9219
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeysIn.js
9220
+ var _getAllKeysIn = __webpack_require__("5e38");
9240
9221
 
9222
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getTag.js + 3 modules
9223
+ var _getTag = __webpack_require__("2b1d");
9241
9224
 
9225
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneArray.js
9226
+ /** Used for built-in method references. */
9227
+ var objectProto = Object.prototype;
9242
9228
 
9243
- /** `Object#toString` result references. */
9244
- var symbolTag = '[object Symbol]';
9229
+ /** Used to check objects for own properties. */
9230
+ var _initCloneArray_hasOwnProperty = objectProto.hasOwnProperty;
9245
9231
 
9246
9232
  /**
9247
- * Checks if `value` is classified as a `Symbol` primitive or object.
9248
- *
9249
- * @static
9250
- * @memberOf _
9251
- * @since 4.0.0
9252
- * @category Lang
9253
- * @param {*} value The value to check.
9254
- * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
9255
- * @example
9256
- *
9257
- * _.isSymbol(Symbol.iterator);
9258
- * // => true
9233
+ * Initializes an array clone.
9259
9234
  *
9260
- * _.isSymbol('abc');
9261
- * // => false
9235
+ * @private
9236
+ * @param {Array} array The array to clone.
9237
+ * @returns {Array} Returns the initialized clone.
9262
9238
  */
9263
- function isSymbol(value) {
9264
- return typeof value == 'symbol' ||
9265
- (Object(_isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(value) && Object(_baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(value) == symbolTag);
9239
+ function initCloneArray(array) {
9240
+ var length = array.length,
9241
+ result = new array.constructor(length);
9242
+
9243
+ // Add properties assigned by `RegExp#exec`.
9244
+ if (length && typeof array[0] == 'string' && _initCloneArray_hasOwnProperty.call(array, 'index')) {
9245
+ result.index = array.index;
9246
+ result.input = array.input;
9247
+ }
9248
+ return result;
9266
9249
  }
9267
9250
 
9268
- /* harmony default export */ __webpack_exports__["a"] = (isSymbol);
9251
+ /* harmony default export */ var _initCloneArray = (initCloneArray);
9269
9252
 
9253
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneArrayBuffer.js
9254
+ var _cloneArrayBuffer = __webpack_require__("7cc9");
9270
9255
 
9271
- /***/ }),
9256
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneDataView.js
9272
9257
 
9273
- /***/ "7b5a":
9274
- /***/ (function(module, exports, __webpack_require__) {
9275
9258
 
9276
- var lengthOfArrayLike = __webpack_require__("c944");
9277
- var toIntegerOrInfinity = __webpack_require__("015b");
9259
+ /**
9260
+ * Creates a clone of `dataView`.
9261
+ *
9262
+ * @private
9263
+ * @param {Object} dataView The data view to clone.
9264
+ * @param {boolean} [isDeep] Specify a deep clone.
9265
+ * @returns {Object} Returns the cloned data view.
9266
+ */
9267
+ function cloneDataView(dataView, isDeep) {
9268
+ var buffer = isDeep ? Object(_cloneArrayBuffer["a" /* default */])(dataView.buffer) : dataView.buffer;
9269
+ return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
9270
+ }
9278
9271
 
9279
- var $RangeError = RangeError;
9272
+ /* harmony default export */ var _cloneDataView = (cloneDataView);
9280
9273
 
9281
- // https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.with
9282
- // https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.with
9283
- module.exports = function (O, C, index, value) {
9284
- var len = lengthOfArrayLike(O);
9285
- var relativeIndex = toIntegerOrInfinity(index);
9286
- var actualIndex = relativeIndex < 0 ? len + relativeIndex : relativeIndex;
9287
- if (actualIndex >= len || actualIndex < 0) throw $RangeError('Incorrect index');
9288
- var A = new C(len);
9289
- var k = 0;
9290
- for (; k < len; k++) A[k] = k === actualIndex ? value : O[k];
9291
- return A;
9292
- };
9293
-
9294
-
9295
- /***/ }),
9296
-
9297
- /***/ "7ba6":
9298
- /***/ (function(module, exports, __webpack_require__) {
9299
-
9300
- exports.nextTick = function nextTick(fn) {
9301
- var args = Array.prototype.slice.call(arguments);
9302
- args.shift();
9303
- setTimeout(function () {
9304
- fn.apply(null, args);
9305
- }, 0);
9306
- };
9307
-
9308
- exports.platform = exports.arch =
9309
- exports.execPath = exports.title = 'browser';
9310
- exports.pid = 1;
9311
- exports.browser = true;
9312
- exports.env = {};
9313
- exports.argv = [];
9314
-
9315
- exports.binding = function (name) {
9316
- throw new Error('No such module. (Possibly not yet loaded)')
9317
- };
9318
-
9319
- (function () {
9320
- var cwd = '/';
9321
- var path;
9322
- exports.cwd = function () { return cwd };
9323
- exports.chdir = function (dir) {
9324
- if (!path) path = __webpack_require__("a987");
9325
- cwd = path.resolve(dir, cwd);
9326
- };
9327
- })();
9274
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneRegExp.js
9275
+ /** Used to match `RegExp` flags from their coerced string values. */
9276
+ var reFlags = /\w*$/;
9328
9277
 
9329
- exports.exit = exports.kill =
9330
- exports.umask = exports.dlopen =
9331
- exports.uptime = exports.memoryUsage =
9332
- exports.uvCounters = function() {};
9333
- exports.features = {};
9278
+ /**
9279
+ * Creates a clone of `regexp`.
9280
+ *
9281
+ * @private
9282
+ * @param {Object} regexp The regexp to clone.
9283
+ * @returns {Object} Returns the cloned regexp.
9284
+ */
9285
+ function cloneRegExp(regexp) {
9286
+ var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
9287
+ result.lastIndex = regexp.lastIndex;
9288
+ return result;
9289
+ }
9334
9290
 
9291
+ /* harmony default export */ var _cloneRegExp = (cloneRegExp);
9335
9292
 
9336
- /***/ }),
9293
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Symbol.js
9294
+ var _Symbol = __webpack_require__("3b02");
9337
9295
 
9338
- /***/ "7cc9":
9339
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9296
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneSymbol.js
9340
9297
 
9341
- "use strict";
9342
- /* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7555");
9343
9298
 
9299
+ /** Used to convert symbols to primitives and strings. */
9300
+ var symbolProto = _Symbol["a" /* default */] ? _Symbol["a" /* default */].prototype : undefined,
9301
+ symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
9344
9302
 
9345
9303
  /**
9346
- * Creates a clone of `arrayBuffer`.
9304
+ * Creates a clone of the `symbol` object.
9347
9305
  *
9348
9306
  * @private
9349
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
9350
- * @returns {ArrayBuffer} Returns the cloned array buffer.
9307
+ * @param {Object} symbol The symbol object to clone.
9308
+ * @returns {Object} Returns the cloned symbol object.
9351
9309
  */
9352
- function cloneArrayBuffer(arrayBuffer) {
9353
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
9354
- new _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"](result).set(new _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"](arrayBuffer));
9355
- return result;
9310
+ function cloneSymbol(symbol) {
9311
+ return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
9356
9312
  }
9357
9313
 
9358
- /* harmony default export */ __webpack_exports__["a"] = (cloneArrayBuffer);
9359
-
9314
+ /* harmony default export */ var _cloneSymbol = (cloneSymbol);
9360
9315
 
9361
- /***/ }),
9316
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneTypedArray.js
9317
+ var _cloneTypedArray = __webpack_require__("3342");
9362
9318
 
9363
- /***/ "7ded":
9364
- /***/ (function(module, exports, __webpack_require__) {
9319
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneByTag.js
9365
9320
 
9366
- var DESCRIPTORS = __webpack_require__("1616");
9367
- var fails = __webpack_require__("8659");
9368
9321
 
9369
- // V8 ~ Chrome 36-
9370
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
9371
- module.exports = DESCRIPTORS && fails(function () {
9372
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
9373
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
9374
- value: 42,
9375
- writable: false
9376
- }).prototype != 42;
9377
- });
9378
9322
 
9379
9323
 
9380
- /***/ }),
9381
9324
 
9382
- /***/ "7ec2":
9383
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9384
9325
 
9385
- "use strict";
9386
- /** Used for built-in method references. */
9387
- var funcProto = Function.prototype;
9326
+ /** `Object#toString` result references. */
9327
+ var boolTag = '[object Boolean]',
9328
+ dateTag = '[object Date]',
9329
+ mapTag = '[object Map]',
9330
+ numberTag = '[object Number]',
9331
+ regexpTag = '[object RegExp]',
9332
+ setTag = '[object Set]',
9333
+ stringTag = '[object String]',
9334
+ symbolTag = '[object Symbol]';
9388
9335
 
9389
- /** Used to resolve the decompiled source of functions. */
9390
- var funcToString = funcProto.toString;
9336
+ var arrayBufferTag = '[object ArrayBuffer]',
9337
+ dataViewTag = '[object DataView]',
9338
+ float32Tag = '[object Float32Array]',
9339
+ float64Tag = '[object Float64Array]',
9340
+ int8Tag = '[object Int8Array]',
9341
+ int16Tag = '[object Int16Array]',
9342
+ int32Tag = '[object Int32Array]',
9343
+ uint8Tag = '[object Uint8Array]',
9344
+ uint8ClampedTag = '[object Uint8ClampedArray]',
9345
+ uint16Tag = '[object Uint16Array]',
9346
+ uint32Tag = '[object Uint32Array]';
9391
9347
 
9392
9348
  /**
9393
- * Converts `func` to its source code.
9349
+ * Initializes an object clone based on its `toStringTag`.
9350
+ *
9351
+ * **Note:** This function only supports cloning values with tags of
9352
+ * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.
9394
9353
  *
9395
9354
  * @private
9396
- * @param {Function} func The function to convert.
9397
- * @returns {string} Returns the source code.
9355
+ * @param {Object} object The object to clone.
9356
+ * @param {string} tag The `toStringTag` of the object to clone.
9357
+ * @param {boolean} [isDeep] Specify a deep clone.
9358
+ * @returns {Object} Returns the initialized clone.
9398
9359
  */
9399
- function toSource(func) {
9400
- if (func != null) {
9401
- try {
9402
- return funcToString.call(func);
9403
- } catch (e) {}
9404
- try {
9405
- return (func + '');
9406
- } catch (e) {}
9407
- }
9408
- return '';
9409
- }
9360
+ function initCloneByTag(object, tag, isDeep) {
9361
+ var Ctor = object.constructor;
9362
+ switch (tag) {
9363
+ case arrayBufferTag:
9364
+ return Object(_cloneArrayBuffer["a" /* default */])(object);
9410
9365
 
9411
- /* harmony default export */ __webpack_exports__["a"] = (toSource);
9366
+ case boolTag:
9367
+ case dateTag:
9368
+ return new Ctor(+object);
9412
9369
 
9370
+ case dataViewTag:
9371
+ return _cloneDataView(object, isDeep);
9413
9372
 
9414
- /***/ }),
9373
+ case float32Tag: case float64Tag:
9374
+ case int8Tag: case int16Tag: case int32Tag:
9375
+ case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:
9376
+ return Object(_cloneTypedArray["a" /* default */])(object, isDeep);
9415
9377
 
9416
- /***/ "7edb":
9417
- /***/ (function(module, exports) {
9378
+ case mapTag:
9379
+ return new Ctor;
9418
9380
 
9419
- // IE8- don't enum bug keys
9420
- module.exports = [
9421
- 'constructor',
9422
- 'hasOwnProperty',
9423
- 'isPrototypeOf',
9424
- 'propertyIsEnumerable',
9425
- 'toLocaleString',
9426
- 'toString',
9427
- 'valueOf'
9428
- ];
9381
+ case numberTag:
9382
+ case stringTag:
9383
+ return new Ctor(object);
9429
9384
 
9385
+ case regexpTag:
9386
+ return _cloneRegExp(object);
9430
9387
 
9431
- /***/ }),
9388
+ case setTag:
9389
+ return new Ctor;
9432
9390
 
9433
- /***/ "7fc9":
9434
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9391
+ case symbolTag:
9392
+ return _cloneSymbol(object);
9393
+ }
9394
+ }
9435
9395
 
9436
- "use strict";
9437
- /* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8839");
9438
- /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("064b");
9439
- /* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("fcdfe");
9396
+ /* harmony default export */ var _initCloneByTag = (initCloneByTag);
9397
+
9398
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneObject.js + 1 modules
9399
+ var _initCloneObject = __webpack_require__("ddea");
9400
+
9401
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
9402
+ var isArray = __webpack_require__("8b73");
9403
+
9404
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
9405
+ var isBuffer = __webpack_require__("6afc0");
9406
+
9407
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
9408
+ var isObjectLike = __webpack_require__("aabe");
9409
+
9410
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsMap.js
9440
9411
 
9441
9412
 
9442
9413
 
9414
+ /** `Object#toString` result references. */
9415
+ var _baseIsMap_mapTag = '[object Map]';
9443
9416
 
9444
9417
  /**
9445
- * Creates an array of own enumerable property names and symbols of `object`.
9418
+ * The base implementation of `_.isMap` without Node.js optimizations.
9446
9419
  *
9447
9420
  * @private
9448
- * @param {Object} object The object to query.
9449
- * @returns {Array} Returns the array of property names and symbols.
9421
+ * @param {*} value The value to check.
9422
+ * @returns {boolean} Returns `true` if `value` is a map, else `false`.
9450
9423
  */
9451
- function getAllKeys(object) {
9452
- return Object(_baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(object, _keys_js__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"], _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
9424
+ function baseIsMap(value) {
9425
+ return Object(isObjectLike["a" /* default */])(value) && Object(_getTag["a" /* default */])(value) == _baseIsMap_mapTag;
9453
9426
  }
9454
9427
 
9455
- /* harmony default export */ __webpack_exports__["a"] = (getAllKeys);
9456
-
9428
+ /* harmony default export */ var _baseIsMap = (baseIsMap);
9457
9429
 
9458
- /***/ }),
9430
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
9431
+ var _baseUnary = __webpack_require__("5de8");
9459
9432
 
9460
- /***/ "80db":
9461
- /***/ (function(module, exports, __webpack_require__) {
9433
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
9434
+ var _nodeUtil = __webpack_require__("1e84");
9462
9435
 
9436
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isMap.js
9463
9437
 
9464
- ;(function (name, root, factory) {
9465
- if (true) {
9466
- module.exports = factory()
9467
- module.exports['default'] = factory()
9468
- }
9469
- /* istanbul ignore next */
9470
- else {}
9471
- }('slugify', this, function () {
9472
- var charMap = JSON.parse('{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E\'","Ը":"Y\'","Թ":"T\'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C\'","Կ":"K","Հ":"H","Ձ":"D\'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R\'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P\'","Ք":"Q\'","Օ":"O\'\'","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"\'","’":"\'","“":"\\\"","”":"\\\"","„":"\\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}')
9473
- var locales = JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}')
9474
9438
 
9475
- function replace (string, options) {
9476
- if (typeof string !== 'string') {
9477
- throw new Error('slugify: string argument expected')
9478
- }
9479
9439
 
9480
- options = (typeof options === 'string')
9481
- ? {replacement: options}
9482
- : options || {}
9483
9440
 
9484
- var locale = locales[options.locale] || {}
9441
+ /* Node.js helper references. */
9442
+ var nodeIsMap = _nodeUtil["a" /* default */] && _nodeUtil["a" /* default */].isMap;
9485
9443
 
9486
- var replacement = options.replacement === undefined ? '-' : options.replacement
9444
+ /**
9445
+ * Checks if `value` is classified as a `Map` object.
9446
+ *
9447
+ * @static
9448
+ * @memberOf _
9449
+ * @since 4.3.0
9450
+ * @category Lang
9451
+ * @param {*} value The value to check.
9452
+ * @returns {boolean} Returns `true` if `value` is a map, else `false`.
9453
+ * @example
9454
+ *
9455
+ * _.isMap(new Map);
9456
+ * // => true
9457
+ *
9458
+ * _.isMap(new WeakMap);
9459
+ * // => false
9460
+ */
9461
+ var isMap = nodeIsMap ? Object(_baseUnary["a" /* default */])(nodeIsMap) : _baseIsMap;
9487
9462
 
9488
- var trim = options.trim === undefined ? true : options.trim
9463
+ /* harmony default export */ var lodash_es_isMap = (isMap);
9489
9464
 
9490
- var slug = string.normalize().split('')
9491
- // replace characters based on charMap
9492
- .reduce(function (result, ch) {
9493
- var appendChar = locale[ch];
9494
- if (appendChar === undefined) appendChar = charMap[ch];
9495
- if (appendChar === undefined) appendChar = ch;
9496
- if (appendChar === replacement) appendChar = ' ';
9497
- return result + appendChar
9498
- // remove not allowed characters
9499
- .replace(options.remove || /[^\w\s$*_+~.()'"!\-:@]+/g, '')
9500
- }, '');
9465
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js
9466
+ var isObject = __webpack_require__("992f");
9501
9467
 
9502
- if (options.strict) {
9503
- slug = slug.replace(/[^A-Za-z0-9\s]/g, '');
9504
- }
9468
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsSet.js
9505
9469
 
9506
- if (trim) {
9507
- slug = slug.trim()
9508
- }
9509
9470
 
9510
- // Replace spaces with replacement character, treating multiple consecutive
9511
- // spaces as a single space.
9512
- slug = slug.replace(/\s+/g, replacement);
9513
9471
 
9514
- if (options.lower) {
9515
- slug = slug.toLowerCase()
9516
- }
9472
+ /** `Object#toString` result references. */
9473
+ var _baseIsSet_setTag = '[object Set]';
9517
9474
 
9518
- return slug
9519
- }
9475
+ /**
9476
+ * The base implementation of `_.isSet` without Node.js optimizations.
9477
+ *
9478
+ * @private
9479
+ * @param {*} value The value to check.
9480
+ * @returns {boolean} Returns `true` if `value` is a set, else `false`.
9481
+ */
9482
+ function baseIsSet(value) {
9483
+ return Object(isObjectLike["a" /* default */])(value) && Object(_getTag["a" /* default */])(value) == _baseIsSet_setTag;
9484
+ }
9520
9485
 
9521
- replace.extend = function (customMap) {
9522
- Object.assign(charMap, customMap)
9523
- }
9486
+ /* harmony default export */ var _baseIsSet = (baseIsSet);
9524
9487
 
9525
- return replace
9526
- }))
9488
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isSet.js
9527
9489
 
9528
9490
 
9529
- /***/ }),
9530
9491
 
9531
- /***/ "8105":
9532
- /***/ (function(module, exports, __webpack_require__) {
9533
9492
 
9534
- /* eslint-disable es/no-symbol -- required for testing */
9535
- var V8_VERSION = __webpack_require__("9e96");
9536
- var fails = __webpack_require__("8659");
9493
+ /* Node.js helper references. */
9494
+ var nodeIsSet = _nodeUtil["a" /* default */] && _nodeUtil["a" /* default */].isSet;
9537
9495
 
9538
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
9539
- module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
9540
- var symbol = Symbol();
9541
- // Chrome 38 Symbol has incorrect toString conversion
9542
- // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
9543
- return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
9544
- // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
9545
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
9546
- });
9496
+ /**
9497
+ * Checks if `value` is classified as a `Set` object.
9498
+ *
9499
+ * @static
9500
+ * @memberOf _
9501
+ * @since 4.3.0
9502
+ * @category Lang
9503
+ * @param {*} value The value to check.
9504
+ * @returns {boolean} Returns `true` if `value` is a set, else `false`.
9505
+ * @example
9506
+ *
9507
+ * _.isSet(new Set);
9508
+ * // => true
9509
+ *
9510
+ * _.isSet(new WeakSet);
9511
+ * // => false
9512
+ */
9513
+ var isSet = nodeIsSet ? Object(_baseUnary["a" /* default */])(nodeIsSet) : _baseIsSet;
9547
9514
 
9515
+ /* harmony default export */ var lodash_es_isSet = (isSet);
9548
9516
 
9549
- /***/ }),
9517
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseClone.js
9550
9518
 
9551
- /***/ "8118":
9552
- /***/ (function(module, exports, __webpack_require__) {
9553
9519
 
9554
- !function(e,i){ true?module.exports=i():undefined}(this,(function(){"use strict";return function(e,i){i.prototype.isSameOrBefore=function(e,i){return this.isSame(e,i)||this.isBefore(e,i)}}}));
9555
9520
 
9556
- /***/ }),
9557
9521
 
9558
- /***/ "8143":
9559
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9560
9522
 
9561
- "use strict";
9562
9523
 
9563
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js + 5 modules
9564
- var _Stack = __webpack_require__("79aa");
9565
9524
 
9566
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayEach.js
9525
+
9526
+
9527
+
9528
+
9529
+
9530
+
9531
+
9532
+
9533
+
9534
+
9535
+
9536
+
9537
+
9538
+
9539
+
9540
+
9541
+ /** Used to compose bitmasks for cloning. */
9542
+ var CLONE_DEEP_FLAG = 1,
9543
+ CLONE_FLAT_FLAG = 2,
9544
+ CLONE_SYMBOLS_FLAG = 4;
9545
+
9546
+ /** `Object#toString` result references. */
9547
+ var argsTag = '[object Arguments]',
9548
+ arrayTag = '[object Array]',
9549
+ _baseClone_boolTag = '[object Boolean]',
9550
+ _baseClone_dateTag = '[object Date]',
9551
+ errorTag = '[object Error]',
9552
+ funcTag = '[object Function]',
9553
+ genTag = '[object GeneratorFunction]',
9554
+ _baseClone_mapTag = '[object Map]',
9555
+ _baseClone_numberTag = '[object Number]',
9556
+ objectTag = '[object Object]',
9557
+ _baseClone_regexpTag = '[object RegExp]',
9558
+ _baseClone_setTag = '[object Set]',
9559
+ _baseClone_stringTag = '[object String]',
9560
+ _baseClone_symbolTag = '[object Symbol]',
9561
+ weakMapTag = '[object WeakMap]';
9562
+
9563
+ var _baseClone_arrayBufferTag = '[object ArrayBuffer]',
9564
+ _baseClone_dataViewTag = '[object DataView]',
9565
+ _baseClone_float32Tag = '[object Float32Array]',
9566
+ _baseClone_float64Tag = '[object Float64Array]',
9567
+ _baseClone_int8Tag = '[object Int8Array]',
9568
+ _baseClone_int16Tag = '[object Int16Array]',
9569
+ _baseClone_int32Tag = '[object Int32Array]',
9570
+ _baseClone_uint8Tag = '[object Uint8Array]',
9571
+ _baseClone_uint8ClampedTag = '[object Uint8ClampedArray]',
9572
+ _baseClone_uint16Tag = '[object Uint16Array]',
9573
+ _baseClone_uint32Tag = '[object Uint32Array]';
9574
+
9575
+ /** Used to identify `toStringTag` values supported by `_.clone`. */
9576
+ var cloneableTags = {};
9577
+ cloneableTags[argsTag] = cloneableTags[arrayTag] =
9578
+ cloneableTags[_baseClone_arrayBufferTag] = cloneableTags[_baseClone_dataViewTag] =
9579
+ cloneableTags[_baseClone_boolTag] = cloneableTags[_baseClone_dateTag] =
9580
+ cloneableTags[_baseClone_float32Tag] = cloneableTags[_baseClone_float64Tag] =
9581
+ cloneableTags[_baseClone_int8Tag] = cloneableTags[_baseClone_int16Tag] =
9582
+ cloneableTags[_baseClone_int32Tag] = cloneableTags[_baseClone_mapTag] =
9583
+ cloneableTags[_baseClone_numberTag] = cloneableTags[objectTag] =
9584
+ cloneableTags[_baseClone_regexpTag] = cloneableTags[_baseClone_setTag] =
9585
+ cloneableTags[_baseClone_stringTag] = cloneableTags[_baseClone_symbolTag] =
9586
+ cloneableTags[_baseClone_uint8Tag] = cloneableTags[_baseClone_uint8ClampedTag] =
9587
+ cloneableTags[_baseClone_uint16Tag] = cloneableTags[_baseClone_uint32Tag] = true;
9588
+ cloneableTags[errorTag] = cloneableTags[funcTag] =
9589
+ cloneableTags[weakMapTag] = false;
9590
+
9567
9591
  /**
9568
- * A specialized version of `_.forEach` for arrays without support for
9569
- * iteratee shorthands.
9592
+ * The base implementation of `_.clone` and `_.cloneDeep` which tracks
9593
+ * traversed objects.
9570
9594
  *
9571
9595
  * @private
9572
- * @param {Array} [array] The array to iterate over.
9573
- * @param {Function} iteratee The function invoked per iteration.
9574
- * @returns {Array} Returns `array`.
9596
+ * @param {*} value The value to clone.
9597
+ * @param {boolean} bitmask The bitmask flags.
9598
+ * 1 - Deep clone
9599
+ * 2 - Flatten inherited properties
9600
+ * 4 - Clone symbols
9601
+ * @param {Function} [customizer] The function to customize cloning.
9602
+ * @param {string} [key] The key of `value`.
9603
+ * @param {Object} [object] The parent object of `value`.
9604
+ * @param {Object} [stack] Tracks traversed objects and their clone counterparts.
9605
+ * @returns {*} Returns the cloned value.
9575
9606
  */
9576
- function arrayEach(array, iteratee) {
9577
- var index = -1,
9578
- length = array == null ? 0 : array.length;
9607
+ function baseClone(value, bitmask, customizer, key, object, stack) {
9608
+ var result,
9609
+ isDeep = bitmask & CLONE_DEEP_FLAG,
9610
+ isFlat = bitmask & CLONE_FLAT_FLAG,
9611
+ isFull = bitmask & CLONE_SYMBOLS_FLAG;
9579
9612
 
9580
- while (++index < length) {
9581
- if (iteratee(array[index], index, array) === false) {
9582
- break;
9583
- }
9613
+ if (customizer) {
9614
+ result = object ? customizer(value, key, object, stack) : customizer(value);
9584
9615
  }
9585
- return array;
9586
- }
9587
-
9588
- /* harmony default export */ var _arrayEach = (arrayEach);
9616
+ if (result !== undefined) {
9617
+ return result;
9618
+ }
9619
+ if (!Object(isObject["a" /* default */])(value)) {
9620
+ return value;
9621
+ }
9622
+ var isArr = Object(isArray["a" /* default */])(value);
9623
+ if (isArr) {
9624
+ result = _initCloneArray(value);
9625
+ if (!isDeep) {
9626
+ return Object(_copyArray["a" /* default */])(value, result);
9627
+ }
9628
+ } else {
9629
+ var tag = Object(_getTag["a" /* default */])(value),
9630
+ isFunc = tag == funcTag || tag == genTag;
9589
9631
 
9590
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
9591
- var _assignValue = __webpack_require__("9eea");
9632
+ if (Object(isBuffer["a" /* default */])(value)) {
9633
+ return Object(_cloneBuffer["a" /* default */])(value, isDeep);
9634
+ }
9635
+ if (tag == objectTag || tag == argsTag || (isFunc && !object)) {
9636
+ result = (isFlat || isFunc) ? {} : Object(_initCloneObject["a" /* default */])(value);
9637
+ if (!isDeep) {
9638
+ return isFlat
9639
+ ? _copySymbolsIn(value, _baseAssignIn(result, value))
9640
+ : _copySymbols(value, _baseAssign(result, value));
9641
+ }
9642
+ } else {
9643
+ if (!cloneableTags[tag]) {
9644
+ return object ? value : {};
9645
+ }
9646
+ result = _initCloneByTag(value, tag, isDeep);
9647
+ }
9648
+ }
9649
+ // Check for circular references and return its corresponding clone.
9650
+ stack || (stack = new _Stack["a" /* default */]);
9651
+ var stacked = stack.get(value);
9652
+ if (stacked) {
9653
+ return stacked;
9654
+ }
9655
+ stack.set(value, result);
9592
9656
 
9593
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
9594
- var _copyObject = __webpack_require__("a93e");
9657
+ if (lodash_es_isSet(value)) {
9658
+ value.forEach(function(subValue) {
9659
+ result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
9660
+ });
9661
+ } else if (lodash_es_isMap(value)) {
9662
+ value.forEach(function(subValue, key) {
9663
+ result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));
9664
+ });
9665
+ }
9595
9666
 
9596
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keys.js
9597
- var keys = __webpack_require__("fcdfe");
9667
+ var keysFunc = isFull
9668
+ ? (isFlat ? _getAllKeysIn["a" /* default */] : _getAllKeys["a" /* default */])
9669
+ : (isFlat ? keysIn["a" /* default */] : keys["a" /* default */]);
9598
9670
 
9599
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssign.js
9671
+ var props = isArr ? undefined : keysFunc(value);
9672
+ _arrayEach(props || value, function(subValue, key) {
9673
+ if (props) {
9674
+ key = subValue;
9675
+ subValue = value[key];
9676
+ }
9677
+ // Recursively populate clone (susceptible to call stack limits).
9678
+ Object(_assignValue["a" /* default */])(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));
9679
+ });
9680
+ return result;
9681
+ }
9600
9682
 
9683
+ /* harmony default export */ var _baseClone = (baseClone);
9601
9684
 
9685
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_castPath.js + 3 modules
9686
+ var _castPath = __webpack_require__("05a1");
9602
9687
 
9688
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/last.js
9603
9689
  /**
9604
- * The base implementation of `_.assign` without support for multiple sources
9605
- * or `customizer` functions.
9690
+ * Gets the last element of `array`.
9606
9691
  *
9607
- * @private
9608
- * @param {Object} object The destination object.
9609
- * @param {Object} source The source object.
9610
- * @returns {Object} Returns `object`.
9692
+ * @static
9693
+ * @memberOf _
9694
+ * @since 0.1.0
9695
+ * @category Array
9696
+ * @param {Array} array The array to query.
9697
+ * @returns {*} Returns the last element of `array`.
9698
+ * @example
9699
+ *
9700
+ * _.last([1, 2, 3]);
9701
+ * // => 3
9611
9702
  */
9612
- function baseAssign(object, source) {
9613
- return object && Object(_copyObject["a" /* default */])(source, Object(keys["a" /* default */])(source), object);
9703
+ function last(array) {
9704
+ var length = array == null ? 0 : array.length;
9705
+ return length ? array[length - 1] : undefined;
9614
9706
  }
9615
9707
 
9616
- /* harmony default export */ var _baseAssign = (baseAssign);
9708
+ /* harmony default export */ var lodash_es_last = (last);
9709
+
9710
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseGet.js
9711
+ var _baseGet = __webpack_require__("fdab");
9617
9712
 
9618
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js + 2 modules
9619
- var keysIn = __webpack_require__("94d2");
9713
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSlice.js
9714
+ var _baseSlice = __webpack_require__("4982");
9620
9715
 
9621
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignIn.js
9716
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_parent.js
9622
9717
 
9623
9718
 
9624
9719
 
9625
9720
  /**
9626
- * The base implementation of `_.assignIn` without support for multiple sources
9627
- * or `customizer` functions.
9721
+ * Gets the parent value at `path` of `object`.
9628
9722
  *
9629
9723
  * @private
9630
- * @param {Object} object The destination object.
9631
- * @param {Object} source The source object.
9632
- * @returns {Object} Returns `object`.
9724
+ * @param {Object} object The object to query.
9725
+ * @param {Array} path The path to get the parent value of.
9726
+ * @returns {*} Returns the parent value.
9633
9727
  */
9634
- function baseAssignIn(object, source) {
9635
- return object && Object(_copyObject["a" /* default */])(source, Object(keysIn["a" /* default */])(source), object);
9728
+ function _parent_parent(object, path) {
9729
+ return path.length < 2 ? object : Object(_baseGet["a" /* default */])(object, Object(_baseSlice["a" /* default */])(path, 0, -1));
9636
9730
  }
9637
9731
 
9638
- /* harmony default export */ var _baseAssignIn = (baseAssignIn);
9732
+ /* harmony default export */ var _parent = (_parent_parent);
9639
9733
 
9640
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneBuffer.js
9641
- var _cloneBuffer = __webpack_require__("dbfc");
9734
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_toKey.js
9735
+ var _toKey = __webpack_require__("73f5");
9642
9736
 
9643
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
9644
- var _copyArray = __webpack_require__("fd6e");
9737
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnset.js
9645
9738
 
9646
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getSymbols.js + 1 modules
9647
- var _getSymbols = __webpack_require__("064b");
9648
9739
 
9649
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copySymbols.js
9650
9740
 
9651
9741
 
9652
9742
 
9653
9743
  /**
9654
- * Copies own symbols of `source` to `object`.
9744
+ * The base implementation of `_.unset`.
9655
9745
  *
9656
9746
  * @private
9657
- * @param {Object} source The object to copy symbols from.
9658
- * @param {Object} [object={}] The object to copy symbols to.
9659
- * @returns {Object} Returns `object`.
9747
+ * @param {Object} object The object to modify.
9748
+ * @param {Array|string} path The property path to unset.
9749
+ * @returns {boolean} Returns `true` if the property is deleted, else `false`.
9660
9750
  */
9661
- function copySymbols(source, object) {
9662
- return Object(_copyObject["a" /* default */])(source, Object(_getSymbols["a" /* default */])(source), object);
9751
+ function baseUnset(object, path) {
9752
+ path = Object(_castPath["a" /* default */])(path, object);
9753
+ object = _parent(object, path);
9754
+ return object == null || delete object[Object(_toKey["a" /* default */])(lodash_es_last(path))];
9663
9755
  }
9664
9756
 
9665
- /* harmony default export */ var _copySymbols = (copySymbols);
9666
-
9667
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getSymbolsIn.js
9668
- var _getSymbolsIn = __webpack_require__("602f");
9757
+ /* harmony default export */ var _baseUnset = (baseUnset);
9669
9758
 
9670
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copySymbolsIn.js
9759
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isPlainObject.js
9760
+ var isPlainObject = __webpack_require__("8a1f");
9671
9761
 
9762
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_customOmitClone.js
9672
9763
 
9673
9764
 
9674
9765
  /**
9675
- * Copies own and inherited symbols of `source` to `object`.
9766
+ * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
9767
+ * objects.
9676
9768
  *
9677
9769
  * @private
9678
- * @param {Object} source The object to copy symbols from.
9679
- * @param {Object} [object={}] The object to copy symbols to.
9680
- * @returns {Object} Returns `object`.
9770
+ * @param {*} value The value to inspect.
9771
+ * @param {string} key The key of the property to inspect.
9772
+ * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
9681
9773
  */
9682
- function copySymbolsIn(source, object) {
9683
- return Object(_copyObject["a" /* default */])(source, Object(_getSymbolsIn["a" /* default */])(source), object);
9774
+ function customOmitClone(value) {
9775
+ return Object(isPlainObject["a" /* default */])(value) ? undefined : value;
9684
9776
  }
9685
9777
 
9686
- /* harmony default export */ var _copySymbolsIn = (copySymbolsIn);
9778
+ /* harmony default export */ var _customOmitClone = (customOmitClone);
9779
+
9780
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_flatRest.js + 1 modules
9781
+ var _flatRest = __webpack_require__("b751");
9782
+
9783
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js
9784
+
9785
+
9687
9786
 
9688
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeys.js
9689
- var _getAllKeys = __webpack_require__("7fc9");
9690
9787
 
9691
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeysIn.js
9692
- var _getAllKeysIn = __webpack_require__("5e38");
9693
9788
 
9694
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getTag.js + 3 modules
9695
- var _getTag = __webpack_require__("2b1d");
9696
9789
 
9697
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneArray.js
9698
- /** Used for built-in method references. */
9699
- var objectProto = Object.prototype;
9700
9790
 
9701
- /** Used to check objects for own properties. */
9702
- var _initCloneArray_hasOwnProperty = objectProto.hasOwnProperty;
9791
+
9792
+
9793
+ /** Used to compose bitmasks for cloning. */
9794
+ var omit_CLONE_DEEP_FLAG = 1,
9795
+ omit_CLONE_FLAT_FLAG = 2,
9796
+ omit_CLONE_SYMBOLS_FLAG = 4;
9703
9797
 
9704
9798
  /**
9705
- * Initializes an array clone.
9799
+ * The opposite of `_.pick`; this method creates an object composed of the
9800
+ * own and inherited enumerable property paths of `object` that are not omitted.
9706
9801
  *
9707
- * @private
9708
- * @param {Array} array The array to clone.
9709
- * @returns {Array} Returns the initialized clone.
9802
+ * **Note:** This method is considerably slower than `_.pick`.
9803
+ *
9804
+ * @static
9805
+ * @since 0.1.0
9806
+ * @memberOf _
9807
+ * @category Object
9808
+ * @param {Object} object The source object.
9809
+ * @param {...(string|string[])} [paths] The property paths to omit.
9810
+ * @returns {Object} Returns the new object.
9811
+ * @example
9812
+ *
9813
+ * var object = { 'a': 1, 'b': '2', 'c': 3 };
9814
+ *
9815
+ * _.omit(object, ['a', 'c']);
9816
+ * // => { 'b': '2' }
9710
9817
  */
9711
- function initCloneArray(array) {
9712
- var length = array.length,
9713
- result = new array.constructor(length);
9714
-
9715
- // Add properties assigned by `RegExp#exec`.
9716
- if (length && typeof array[0] == 'string' && _initCloneArray_hasOwnProperty.call(array, 'index')) {
9717
- result.index = array.index;
9718
- result.input = array.input;
9818
+ var omit = Object(_flatRest["a" /* default */])(function(object, paths) {
9819
+ var result = {};
9820
+ if (object == null) {
9821
+ return result;
9822
+ }
9823
+ var isDeep = false;
9824
+ paths = Object(_arrayMap["a" /* default */])(paths, function(path) {
9825
+ path = Object(_castPath["a" /* default */])(path, object);
9826
+ isDeep || (isDeep = path.length > 1);
9827
+ return path;
9828
+ });
9829
+ Object(_copyObject["a" /* default */])(object, Object(_getAllKeysIn["a" /* default */])(object), result);
9830
+ if (isDeep) {
9831
+ result = _baseClone(result, omit_CLONE_DEEP_FLAG | omit_CLONE_FLAT_FLAG | omit_CLONE_SYMBOLS_FLAG, _customOmitClone);
9832
+ }
9833
+ var length = paths.length;
9834
+ while (length--) {
9835
+ _baseUnset(result, paths[length]);
9719
9836
  }
9720
9837
  return result;
9721
- }
9838
+ });
9722
9839
 
9723
- /* harmony default export */ var _initCloneArray = (initCloneArray);
9840
+ /* harmony default export */ var lodash_es_omit = __webpack_exports__["a"] = (omit);
9724
9841
 
9725
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneArrayBuffer.js
9726
- var _cloneArrayBuffer = __webpack_require__("7cc9");
9727
9842
 
9728
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneDataView.js
9843
+ /***/ }),
9844
+
9845
+ /***/ "79aa":
9846
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
9847
+
9848
+ "use strict";
9849
+
9850
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js + 6 modules
9851
+ var _ListCache = __webpack_require__("dd3c");
9852
+
9853
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
9729
9854
 
9730
9855
 
9731
9856
  /**
9732
- * Creates a clone of `dataView`.
9857
+ * Removes all key-value entries from the stack.
9733
9858
  *
9734
9859
  * @private
9735
- * @param {Object} dataView The data view to clone.
9736
- * @param {boolean} [isDeep] Specify a deep clone.
9737
- * @returns {Object} Returns the cloned data view.
9860
+ * @name clear
9861
+ * @memberOf Stack
9738
9862
  */
9739
- function cloneDataView(dataView, isDeep) {
9740
- var buffer = isDeep ? Object(_cloneArrayBuffer["a" /* default */])(dataView.buffer) : dataView.buffer;
9741
- return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
9863
+ function stackClear() {
9864
+ this.__data__ = new _ListCache["a" /* default */];
9865
+ this.size = 0;
9742
9866
  }
9743
9867
 
9744
- /* harmony default export */ var _cloneDataView = (cloneDataView);
9745
-
9746
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneRegExp.js
9747
- /** Used to match `RegExp` flags from their coerced string values. */
9748
- var reFlags = /\w*$/;
9868
+ /* harmony default export */ var _stackClear = (stackClear);
9749
9869
 
9870
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
9750
9871
  /**
9751
- * Creates a clone of `regexp`.
9872
+ * Removes `key` and its value from the stack.
9752
9873
  *
9753
9874
  * @private
9754
- * @param {Object} regexp The regexp to clone.
9755
- * @returns {Object} Returns the cloned regexp.
9875
+ * @name delete
9876
+ * @memberOf Stack
9877
+ * @param {string} key The key of the value to remove.
9878
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
9756
9879
  */
9757
- function cloneRegExp(regexp) {
9758
- var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
9759
- result.lastIndex = regexp.lastIndex;
9880
+ function stackDelete(key) {
9881
+ var data = this.__data__,
9882
+ result = data['delete'](key);
9883
+
9884
+ this.size = data.size;
9760
9885
  return result;
9761
9886
  }
9762
9887
 
9763
- /* harmony default export */ var _cloneRegExp = (cloneRegExp);
9764
-
9765
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Symbol.js
9766
- var _Symbol = __webpack_require__("3b02");
9767
-
9768
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneSymbol.js
9769
-
9770
-
9771
- /** Used to convert symbols to primitives and strings. */
9772
- var symbolProto = _Symbol["a" /* default */] ? _Symbol["a" /* default */].prototype : undefined,
9773
- symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
9888
+ /* harmony default export */ var _stackDelete = (stackDelete);
9774
9889
 
9890
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
9775
9891
  /**
9776
- * Creates a clone of the `symbol` object.
9892
+ * Gets the stack value for `key`.
9777
9893
  *
9778
9894
  * @private
9779
- * @param {Object} symbol The symbol object to clone.
9780
- * @returns {Object} Returns the cloned symbol object.
9895
+ * @name get
9896
+ * @memberOf Stack
9897
+ * @param {string} key The key of the value to get.
9898
+ * @returns {*} Returns the entry value.
9781
9899
  */
9782
- function cloneSymbol(symbol) {
9783
- return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
9900
+ function stackGet(key) {
9901
+ return this.__data__.get(key);
9784
9902
  }
9785
9903
 
9786
- /* harmony default export */ var _cloneSymbol = (cloneSymbol);
9787
-
9788
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneTypedArray.js
9789
- var _cloneTypedArray = __webpack_require__("3342");
9790
-
9791
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneByTag.js
9792
-
9793
-
9794
-
9795
-
9796
-
9797
-
9798
- /** `Object#toString` result references. */
9799
- var boolTag = '[object Boolean]',
9800
- dateTag = '[object Date]',
9801
- mapTag = '[object Map]',
9802
- numberTag = '[object Number]',
9803
- regexpTag = '[object RegExp]',
9804
- setTag = '[object Set]',
9805
- stringTag = '[object String]',
9806
- symbolTag = '[object Symbol]';
9807
-
9808
- var arrayBufferTag = '[object ArrayBuffer]',
9809
- dataViewTag = '[object DataView]',
9810
- float32Tag = '[object Float32Array]',
9811
- float64Tag = '[object Float64Array]',
9812
- int8Tag = '[object Int8Array]',
9813
- int16Tag = '[object Int16Array]',
9814
- int32Tag = '[object Int32Array]',
9815
- uint8Tag = '[object Uint8Array]',
9816
- uint8ClampedTag = '[object Uint8ClampedArray]',
9817
- uint16Tag = '[object Uint16Array]',
9818
- uint32Tag = '[object Uint32Array]';
9904
+ /* harmony default export */ var _stackGet = (stackGet);
9819
9905
 
9906
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
9820
9907
  /**
9821
- * Initializes an object clone based on its `toStringTag`.
9822
- *
9823
- * **Note:** This function only supports cloning values with tags of
9824
- * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.
9908
+ * Checks if a stack value for `key` exists.
9825
9909
  *
9826
9910
  * @private
9827
- * @param {Object} object The object to clone.
9828
- * @param {string} tag The `toStringTag` of the object to clone.
9829
- * @param {boolean} [isDeep] Specify a deep clone.
9830
- * @returns {Object} Returns the initialized clone.
9911
+ * @name has
9912
+ * @memberOf Stack
9913
+ * @param {string} key The key of the entry to check.
9914
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
9831
9915
  */
9832
- function initCloneByTag(object, tag, isDeep) {
9833
- var Ctor = object.constructor;
9834
- switch (tag) {
9835
- case arrayBufferTag:
9836
- return Object(_cloneArrayBuffer["a" /* default */])(object);
9916
+ function stackHas(key) {
9917
+ return this.__data__.has(key);
9918
+ }
9837
9919
 
9838
- case boolTag:
9839
- case dateTag:
9840
- return new Ctor(+object);
9920
+ /* harmony default export */ var _stackHas = (stackHas);
9841
9921
 
9842
- case dataViewTag:
9843
- return _cloneDataView(object, isDeep);
9922
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
9923
+ var _Map = __webpack_require__("c384");
9844
9924
 
9845
- case float32Tag: case float64Tag:
9846
- case int8Tag: case int16Tag: case int32Tag:
9847
- case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:
9848
- return Object(_cloneTypedArray["a" /* default */])(object, isDeep);
9925
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js + 14 modules
9926
+ var _MapCache = __webpack_require__("63e6");
9849
9927
 
9850
- case mapTag:
9851
- return new Ctor;
9928
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
9852
9929
 
9853
- case numberTag:
9854
- case stringTag:
9855
- return new Ctor(object);
9856
9930
 
9857
- case regexpTag:
9858
- return _cloneRegExp(object);
9859
9931
 
9860
- case setTag:
9861
- return new Ctor;
9862
9932
 
9863
- case symbolTag:
9864
- return _cloneSymbol(object);
9933
+ /** Used as the size to enable large array optimizations. */
9934
+ var LARGE_ARRAY_SIZE = 200;
9935
+
9936
+ /**
9937
+ * Sets the stack `key` to `value`.
9938
+ *
9939
+ * @private
9940
+ * @name set
9941
+ * @memberOf Stack
9942
+ * @param {string} key The key of the value to set.
9943
+ * @param {*} value The value to set.
9944
+ * @returns {Object} Returns the stack cache instance.
9945
+ */
9946
+ function stackSet(key, value) {
9947
+ var data = this.__data__;
9948
+ if (data instanceof _ListCache["a" /* default */]) {
9949
+ var pairs = data.__data__;
9950
+ if (!_Map["a" /* default */] || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
9951
+ pairs.push([key, value]);
9952
+ this.size = ++data.size;
9953
+ return this;
9954
+ }
9955
+ data = this.__data__ = new _MapCache["a" /* default */](pairs);
9865
9956
  }
9957
+ data.set(key, value);
9958
+ this.size = data.size;
9959
+ return this;
9866
9960
  }
9867
9961
 
9868
- /* harmony default export */ var _initCloneByTag = (initCloneByTag);
9869
-
9870
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneObject.js + 1 modules
9871
- var _initCloneObject = __webpack_require__("ddea");
9962
+ /* harmony default export */ var _stackSet = (stackSet);
9872
9963
 
9873
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
9874
- var isArray = __webpack_require__("8b73");
9964
+ // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
9875
9965
 
9876
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
9877
- var isBuffer = __webpack_require__("6afc0");
9878
9966
 
9879
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
9880
- var isObjectLike = __webpack_require__("aabe");
9881
9967
 
9882
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsMap.js
9883
9968
 
9884
9969
 
9885
9970
 
9886
- /** `Object#toString` result references. */
9887
- var _baseIsMap_mapTag = '[object Map]';
9888
9971
 
9889
9972
  /**
9890
- * The base implementation of `_.isMap` without Node.js optimizations.
9973
+ * Creates a stack cache object to store key-value pairs.
9891
9974
  *
9892
9975
  * @private
9893
- * @param {*} value The value to check.
9894
- * @returns {boolean} Returns `true` if `value` is a map, else `false`.
9976
+ * @constructor
9977
+ * @param {Array} [entries] The key-value pairs to cache.
9895
9978
  */
9896
- function baseIsMap(value) {
9897
- return Object(isObjectLike["a" /* default */])(value) && Object(_getTag["a" /* default */])(value) == _baseIsMap_mapTag;
9979
+ function Stack(entries) {
9980
+ var data = this.__data__ = new _ListCache["a" /* default */](entries);
9981
+ this.size = data.size;
9898
9982
  }
9899
9983
 
9900
- /* harmony default export */ var _baseIsMap = (baseIsMap);
9984
+ // Add methods to `Stack`.
9985
+ Stack.prototype.clear = _stackClear;
9986
+ Stack.prototype['delete'] = _stackDelete;
9987
+ Stack.prototype.get = _stackGet;
9988
+ Stack.prototype.has = _stackHas;
9989
+ Stack.prototype.set = _stackSet;
9901
9990
 
9902
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
9903
- var _baseUnary = __webpack_require__("5de8");
9991
+ /* harmony default export */ var _Stack = __webpack_exports__["a"] = (Stack);
9904
9992
 
9905
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
9906
- var _nodeUtil = __webpack_require__("1e84");
9907
9993
 
9908
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isMap.js
9994
+ /***/ }),
9909
9995
 
9996
+ /***/ "7aea":
9997
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
9998
+
9999
+ "use strict";
10000
+ /* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("5fa7");
10001
+ /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("aabe");
9910
10002
 
9911
10003
 
9912
10004
 
9913
- /* Node.js helper references. */
9914
- var nodeIsMap = _nodeUtil["a" /* default */] && _nodeUtil["a" /* default */].isMap;
10005
+ /** `Object#toString` result references. */
10006
+ var symbolTag = '[object Symbol]';
9915
10007
 
9916
10008
  /**
9917
- * Checks if `value` is classified as a `Map` object.
10009
+ * Checks if `value` is classified as a `Symbol` primitive or object.
9918
10010
  *
9919
10011
  * @static
9920
10012
  * @memberOf _
9921
- * @since 4.3.0
10013
+ * @since 4.0.0
9922
10014
  * @category Lang
9923
10015
  * @param {*} value The value to check.
9924
- * @returns {boolean} Returns `true` if `value` is a map, else `false`.
10016
+ * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
9925
10017
  * @example
9926
10018
  *
9927
- * _.isMap(new Map);
10019
+ * _.isSymbol(Symbol.iterator);
9928
10020
  * // => true
9929
10021
  *
9930
- * _.isMap(new WeakMap);
10022
+ * _.isSymbol('abc');
9931
10023
  * // => false
9932
10024
  */
9933
- var isMap = nodeIsMap ? Object(_baseUnary["a" /* default */])(nodeIsMap) : _baseIsMap;
10025
+ function isSymbol(value) {
10026
+ return typeof value == 'symbol' ||
10027
+ (Object(_isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(value) && Object(_baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(value) == symbolTag);
10028
+ }
9934
10029
 
9935
- /* harmony default export */ var lodash_es_isMap = (isMap);
10030
+ /* harmony default export */ __webpack_exports__["a"] = (isSymbol);
9936
10031
 
9937
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js
9938
- var isObject = __webpack_require__("992f");
9939
10032
 
9940
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsSet.js
10033
+ /***/ }),
9941
10034
 
10035
+ /***/ "7b5a":
10036
+ /***/ (function(module, exports, __webpack_require__) {
9942
10037
 
10038
+ var lengthOfArrayLike = __webpack_require__("c944");
10039
+ var toIntegerOrInfinity = __webpack_require__("015b");
10040
+
10041
+ var $RangeError = RangeError;
10042
+
10043
+ // https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.with
10044
+ // https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.with
10045
+ module.exports = function (O, C, index, value) {
10046
+ var len = lengthOfArrayLike(O);
10047
+ var relativeIndex = toIntegerOrInfinity(index);
10048
+ var actualIndex = relativeIndex < 0 ? len + relativeIndex : relativeIndex;
10049
+ if (actualIndex >= len || actualIndex < 0) throw $RangeError('Incorrect index');
10050
+ var A = new C(len);
10051
+ var k = 0;
10052
+ for (; k < len; k++) A[k] = k === actualIndex ? value : O[k];
10053
+ return A;
10054
+ };
10055
+
10056
+
10057
+ /***/ }),
10058
+
10059
+ /***/ "7ba6":
10060
+ /***/ (function(module, exports, __webpack_require__) {
10061
+
10062
+ exports.nextTick = function nextTick(fn) {
10063
+ var args = Array.prototype.slice.call(arguments);
10064
+ args.shift();
10065
+ setTimeout(function () {
10066
+ fn.apply(null, args);
10067
+ }, 0);
10068
+ };
10069
+
10070
+ exports.platform = exports.arch =
10071
+ exports.execPath = exports.title = 'browser';
10072
+ exports.pid = 1;
10073
+ exports.browser = true;
10074
+ exports.env = {};
10075
+ exports.argv = [];
10076
+
10077
+ exports.binding = function (name) {
10078
+ throw new Error('No such module. (Possibly not yet loaded)')
10079
+ };
10080
+
10081
+ (function () {
10082
+ var cwd = '/';
10083
+ var path;
10084
+ exports.cwd = function () { return cwd };
10085
+ exports.chdir = function (dir) {
10086
+ if (!path) path = __webpack_require__("a987");
10087
+ cwd = path.resolve(dir, cwd);
10088
+ };
10089
+ })();
10090
+
10091
+ exports.exit = exports.kill =
10092
+ exports.umask = exports.dlopen =
10093
+ exports.uptime = exports.memoryUsage =
10094
+ exports.uvCounters = function() {};
10095
+ exports.features = {};
10096
+
10097
+
10098
+ /***/ }),
10099
+
10100
+ /***/ "7cc9":
10101
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
10102
+
10103
+ "use strict";
10104
+ /* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7555");
9943
10105
 
9944
- /** `Object#toString` result references. */
9945
- var _baseIsSet_setTag = '[object Set]';
9946
10106
 
9947
10107
  /**
9948
- * The base implementation of `_.isSet` without Node.js optimizations.
10108
+ * Creates a clone of `arrayBuffer`.
9949
10109
  *
9950
10110
  * @private
9951
- * @param {*} value The value to check.
9952
- * @returns {boolean} Returns `true` if `value` is a set, else `false`.
10111
+ * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
10112
+ * @returns {ArrayBuffer} Returns the cloned array buffer.
9953
10113
  */
9954
- function baseIsSet(value) {
9955
- return Object(isObjectLike["a" /* default */])(value) && Object(_getTag["a" /* default */])(value) == _baseIsSet_setTag;
10114
+ function cloneArrayBuffer(arrayBuffer) {
10115
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
10116
+ new _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"](result).set(new _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"](arrayBuffer));
10117
+ return result;
9956
10118
  }
9957
10119
 
9958
- /* harmony default export */ var _baseIsSet = (baseIsSet);
10120
+ /* harmony default export */ __webpack_exports__["a"] = (cloneArrayBuffer);
9959
10121
 
9960
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isSet.js
9961
10122
 
10123
+ /***/ }),
9962
10124
 
10125
+ /***/ "7ded":
10126
+ /***/ (function(module, exports, __webpack_require__) {
9963
10127
 
10128
+ var DESCRIPTORS = __webpack_require__("1616");
10129
+ var fails = __webpack_require__("8659");
9964
10130
 
9965
- /* Node.js helper references. */
9966
- var nodeIsSet = _nodeUtil["a" /* default */] && _nodeUtil["a" /* default */].isSet;
10131
+ // V8 ~ Chrome 36-
10132
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
10133
+ module.exports = DESCRIPTORS && fails(function () {
10134
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
10135
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
10136
+ value: 42,
10137
+ writable: false
10138
+ }).prototype != 42;
10139
+ });
10140
+
10141
+
10142
+ /***/ }),
10143
+
10144
+ /***/ "7ec2":
10145
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
10146
+
10147
+ "use strict";
10148
+ /** Used for built-in method references. */
10149
+ var funcProto = Function.prototype;
10150
+
10151
+ /** Used to resolve the decompiled source of functions. */
10152
+ var funcToString = funcProto.toString;
9967
10153
 
9968
10154
  /**
9969
- * Checks if `value` is classified as a `Set` object.
9970
- *
9971
- * @static
9972
- * @memberOf _
9973
- * @since 4.3.0
9974
- * @category Lang
9975
- * @param {*} value The value to check.
9976
- * @returns {boolean} Returns `true` if `value` is a set, else `false`.
9977
- * @example
9978
- *
9979
- * _.isSet(new Set);
9980
- * // => true
10155
+ * Converts `func` to its source code.
9981
10156
  *
9982
- * _.isSet(new WeakSet);
9983
- * // => false
10157
+ * @private
10158
+ * @param {Function} func The function to convert.
10159
+ * @returns {string} Returns the source code.
9984
10160
  */
9985
- var isSet = nodeIsSet ? Object(_baseUnary["a" /* default */])(nodeIsSet) : _baseIsSet;
10161
+ function toSource(func) {
10162
+ if (func != null) {
10163
+ try {
10164
+ return funcToString.call(func);
10165
+ } catch (e) {}
10166
+ try {
10167
+ return (func + '');
10168
+ } catch (e) {}
10169
+ }
10170
+ return '';
10171
+ }
10172
+
10173
+ /* harmony default export */ __webpack_exports__["a"] = (toSource);
10174
+
10175
+
10176
+ /***/ }),
10177
+
10178
+ /***/ "7edb":
10179
+ /***/ (function(module, exports) {
10180
+
10181
+ // IE8- don't enum bug keys
10182
+ module.exports = [
10183
+ 'constructor',
10184
+ 'hasOwnProperty',
10185
+ 'isPrototypeOf',
10186
+ 'propertyIsEnumerable',
10187
+ 'toLocaleString',
10188
+ 'toString',
10189
+ 'valueOf'
10190
+ ];
9986
10191
 
9987
- /* harmony default export */ var lodash_es_isSet = (isSet);
9988
10192
 
9989
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseClone.js
10193
+ /***/ }),
9990
10194
 
10195
+ /***/ "7fc9":
10196
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
9991
10197
 
10198
+ "use strict";
10199
+ /* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8839");
10200
+ /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("064b");
10201
+ /* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("fcdfe");
9992
10202
 
9993
10203
 
9994
10204
 
9995
10205
 
10206
+ /**
10207
+ * Creates an array of own enumerable property names and symbols of `object`.
10208
+ *
10209
+ * @private
10210
+ * @param {Object} object The object to query.
10211
+ * @returns {Array} Returns the array of property names and symbols.
10212
+ */
10213
+ function getAllKeys(object) {
10214
+ return Object(_baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(object, _keys_js__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"], _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
10215
+ }
9996
10216
 
10217
+ /* harmony default export */ __webpack_exports__["a"] = (getAllKeys);
9997
10218
 
9998
10219
 
10220
+ /***/ }),
9999
10221
 
10222
+ /***/ "80db":
10223
+ /***/ (function(module, exports, __webpack_require__) {
10000
10224
 
10001
10225
 
10226
+ ;(function (name, root, factory) {
10227
+ if (true) {
10228
+ module.exports = factory()
10229
+ module.exports['default'] = factory()
10230
+ }
10231
+ /* istanbul ignore next */
10232
+ else {}
10233
+ }('slugify', this, function () {
10234
+ var charMap = JSON.parse('{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E\'","Ը":"Y\'","Թ":"T\'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C\'","Կ":"K","Հ":"H","Ձ":"D\'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R\'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P\'","Ք":"Q\'","Օ":"O\'\'","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"\'","’":"\'","“":"\\\"","”":"\\\"","„":"\\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}')
10235
+ var locales = JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}')
10002
10236
 
10237
+ function replace (string, options) {
10238
+ if (typeof string !== 'string') {
10239
+ throw new Error('slugify: string argument expected')
10240
+ }
10003
10241
 
10242
+ options = (typeof options === 'string')
10243
+ ? {replacement: options}
10244
+ : options || {}
10004
10245
 
10246
+ var locale = locales[options.locale] || {}
10005
10247
 
10248
+ var replacement = options.replacement === undefined ? '-' : options.replacement
10006
10249
 
10250
+ var trim = options.trim === undefined ? true : options.trim
10007
10251
 
10252
+ var slug = string.normalize().split('')
10253
+ // replace characters based on charMap
10254
+ .reduce(function (result, ch) {
10255
+ var appendChar = locale[ch];
10256
+ if (appendChar === undefined) appendChar = charMap[ch];
10257
+ if (appendChar === undefined) appendChar = ch;
10258
+ if (appendChar === replacement) appendChar = ' ';
10259
+ return result + appendChar
10260
+ // remove not allowed characters
10261
+ .replace(options.remove || /[^\w\s$*_+~.()'"!\-:@]+/g, '')
10262
+ }, '');
10008
10263
 
10264
+ if (options.strict) {
10265
+ slug = slug.replace(/[^A-Za-z0-9\s]/g, '');
10266
+ }
10009
10267
 
10268
+ if (trim) {
10269
+ slug = slug.trim()
10270
+ }
10010
10271
 
10272
+ // Replace spaces with replacement character, treating multiple consecutive
10273
+ // spaces as a single space.
10274
+ slug = slug.replace(/\s+/g, replacement);
10011
10275
 
10276
+ if (options.lower) {
10277
+ slug = slug.toLowerCase()
10278
+ }
10012
10279
 
10013
- /** Used to compose bitmasks for cloning. */
10014
- var CLONE_DEEP_FLAG = 1,
10015
- CLONE_FLAT_FLAG = 2,
10016
- CLONE_SYMBOLS_FLAG = 4;
10280
+ return slug
10281
+ }
10017
10282
 
10018
- /** `Object#toString` result references. */
10019
- var argsTag = '[object Arguments]',
10020
- arrayTag = '[object Array]',
10021
- _baseClone_boolTag = '[object Boolean]',
10022
- _baseClone_dateTag = '[object Date]',
10023
- errorTag = '[object Error]',
10024
- funcTag = '[object Function]',
10025
- genTag = '[object GeneratorFunction]',
10026
- _baseClone_mapTag = '[object Map]',
10027
- _baseClone_numberTag = '[object Number]',
10028
- objectTag = '[object Object]',
10029
- _baseClone_regexpTag = '[object RegExp]',
10030
- _baseClone_setTag = '[object Set]',
10031
- _baseClone_stringTag = '[object String]',
10032
- _baseClone_symbolTag = '[object Symbol]',
10033
- weakMapTag = '[object WeakMap]';
10283
+ replace.extend = function (customMap) {
10284
+ Object.assign(charMap, customMap)
10285
+ }
10034
10286
 
10035
- var _baseClone_arrayBufferTag = '[object ArrayBuffer]',
10036
- _baseClone_dataViewTag = '[object DataView]',
10037
- _baseClone_float32Tag = '[object Float32Array]',
10038
- _baseClone_float64Tag = '[object Float64Array]',
10039
- _baseClone_int8Tag = '[object Int8Array]',
10040
- _baseClone_int16Tag = '[object Int16Array]',
10041
- _baseClone_int32Tag = '[object Int32Array]',
10042
- _baseClone_uint8Tag = '[object Uint8Array]',
10043
- _baseClone_uint8ClampedTag = '[object Uint8ClampedArray]',
10044
- _baseClone_uint16Tag = '[object Uint16Array]',
10045
- _baseClone_uint32Tag = '[object Uint32Array]';
10287
+ return replace
10288
+ }))
10046
10289
 
10047
- /** Used to identify `toStringTag` values supported by `_.clone`. */
10048
- var cloneableTags = {};
10049
- cloneableTags[argsTag] = cloneableTags[arrayTag] =
10050
- cloneableTags[_baseClone_arrayBufferTag] = cloneableTags[_baseClone_dataViewTag] =
10051
- cloneableTags[_baseClone_boolTag] = cloneableTags[_baseClone_dateTag] =
10052
- cloneableTags[_baseClone_float32Tag] = cloneableTags[_baseClone_float64Tag] =
10053
- cloneableTags[_baseClone_int8Tag] = cloneableTags[_baseClone_int16Tag] =
10054
- cloneableTags[_baseClone_int32Tag] = cloneableTags[_baseClone_mapTag] =
10055
- cloneableTags[_baseClone_numberTag] = cloneableTags[objectTag] =
10056
- cloneableTags[_baseClone_regexpTag] = cloneableTags[_baseClone_setTag] =
10057
- cloneableTags[_baseClone_stringTag] = cloneableTags[_baseClone_symbolTag] =
10058
- cloneableTags[_baseClone_uint8Tag] = cloneableTags[_baseClone_uint8ClampedTag] =
10059
- cloneableTags[_baseClone_uint16Tag] = cloneableTags[_baseClone_uint32Tag] = true;
10060
- cloneableTags[errorTag] = cloneableTags[funcTag] =
10061
- cloneableTags[weakMapTag] = false;
10062
10290
 
10063
- /**
10064
- * The base implementation of `_.clone` and `_.cloneDeep` which tracks
10065
- * traversed objects.
10066
- *
10067
- * @private
10068
- * @param {*} value The value to clone.
10069
- * @param {boolean} bitmask The bitmask flags.
10070
- * 1 - Deep clone
10071
- * 2 - Flatten inherited properties
10072
- * 4 - Clone symbols
10073
- * @param {Function} [customizer] The function to customize cloning.
10074
- * @param {string} [key] The key of `value`.
10075
- * @param {Object} [object] The parent object of `value`.
10076
- * @param {Object} [stack] Tracks traversed objects and their clone counterparts.
10077
- * @returns {*} Returns the cloned value.
10078
- */
10079
- function baseClone(value, bitmask, customizer, key, object, stack) {
10080
- var result,
10081
- isDeep = bitmask & CLONE_DEEP_FLAG,
10082
- isFlat = bitmask & CLONE_FLAT_FLAG,
10083
- isFull = bitmask & CLONE_SYMBOLS_FLAG;
10291
+ /***/ }),
10084
10292
 
10085
- if (customizer) {
10086
- result = object ? customizer(value, key, object, stack) : customizer(value);
10087
- }
10088
- if (result !== undefined) {
10089
- return result;
10090
- }
10091
- if (!Object(isObject["a" /* default */])(value)) {
10092
- return value;
10093
- }
10094
- var isArr = Object(isArray["a" /* default */])(value);
10095
- if (isArr) {
10096
- result = _initCloneArray(value);
10097
- if (!isDeep) {
10098
- return Object(_copyArray["a" /* default */])(value, result);
10099
- }
10100
- } else {
10101
- var tag = Object(_getTag["a" /* default */])(value),
10102
- isFunc = tag == funcTag || tag == genTag;
10293
+ /***/ "8105":
10294
+ /***/ (function(module, exports, __webpack_require__) {
10103
10295
 
10104
- if (Object(isBuffer["a" /* default */])(value)) {
10105
- return Object(_cloneBuffer["a" /* default */])(value, isDeep);
10106
- }
10107
- if (tag == objectTag || tag == argsTag || (isFunc && !object)) {
10108
- result = (isFlat || isFunc) ? {} : Object(_initCloneObject["a" /* default */])(value);
10109
- if (!isDeep) {
10110
- return isFlat
10111
- ? _copySymbolsIn(value, _baseAssignIn(result, value))
10112
- : _copySymbols(value, _baseAssign(result, value));
10113
- }
10114
- } else {
10115
- if (!cloneableTags[tag]) {
10116
- return object ? value : {};
10117
- }
10118
- result = _initCloneByTag(value, tag, isDeep);
10119
- }
10120
- }
10121
- // Check for circular references and return its corresponding clone.
10122
- stack || (stack = new _Stack["a" /* default */]);
10123
- var stacked = stack.get(value);
10124
- if (stacked) {
10125
- return stacked;
10126
- }
10127
- stack.set(value, result);
10296
+ /* eslint-disable es/no-symbol -- required for testing */
10297
+ var V8_VERSION = __webpack_require__("9e96");
10298
+ var fails = __webpack_require__("8659");
10128
10299
 
10129
- if (lodash_es_isSet(value)) {
10130
- value.forEach(function(subValue) {
10131
- result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
10132
- });
10133
- } else if (lodash_es_isMap(value)) {
10134
- value.forEach(function(subValue, key) {
10135
- result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));
10136
- });
10137
- }
10300
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
10301
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
10302
+ var symbol = Symbol();
10303
+ // Chrome 38 Symbol has incorrect toString conversion
10304
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
10305
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
10306
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
10307
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
10308
+ });
10138
10309
 
10139
- var keysFunc = isFull
10140
- ? (isFlat ? _getAllKeysIn["a" /* default */] : _getAllKeys["a" /* default */])
10141
- : (isFlat ? keysIn["a" /* default */] : keys["a" /* default */]);
10142
10310
 
10143
- var props = isArr ? undefined : keysFunc(value);
10144
- _arrayEach(props || value, function(subValue, key) {
10145
- if (props) {
10146
- key = subValue;
10147
- subValue = value[key];
10148
- }
10149
- // Recursively populate clone (susceptible to call stack limits).
10150
- Object(_assignValue["a" /* default */])(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));
10151
- });
10152
- return result;
10153
- }
10311
+ /***/ }),
10154
10312
 
10155
- /* harmony default export */ var _baseClone = __webpack_exports__["a"] = (baseClone);
10313
+ /***/ "8118":
10314
+ /***/ (function(module, exports, __webpack_require__) {
10156
10315
 
10316
+ !function(e,i){ true?module.exports=i():undefined}(this,(function(){"use strict";return function(e,i){i.prototype.isSameOrBefore=function(e,i){return this.isSame(e,i)||this.isBefore(e,i)}}}));
10157
10317
 
10158
10318
  /***/ }),
10159
10319
 
@@ -13551,44 +13711,6 @@ module.exports = {
13551
13711
  };
13552
13712
 
13553
13713
 
13554
- /***/ }),
13555
-
13556
- /***/ "bbb7":
13557
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
13558
-
13559
- "use strict";
13560
- /* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8143");
13561
-
13562
-
13563
- /** Used to compose bitmasks for cloning. */
13564
- var CLONE_DEEP_FLAG = 1,
13565
- CLONE_SYMBOLS_FLAG = 4;
13566
-
13567
- /**
13568
- * This method is like `_.clone` except that it recursively clones `value`.
13569
- *
13570
- * @static
13571
- * @memberOf _
13572
- * @since 1.0.0
13573
- * @category Lang
13574
- * @param {*} value The value to recursively clone.
13575
- * @returns {*} Returns the deep cloned value.
13576
- * @see _.clone
13577
- * @example
13578
- *
13579
- * var objects = [{ 'a': 1 }, { 'b': 2 }];
13580
- *
13581
- * var deep = _.cloneDeep(objects);
13582
- * console.log(deep[0] === objects[0]);
13583
- * // => false
13584
- */
13585
- function cloneDeep(value) {
13586
- return Object(_baseClone_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);
13587
- }
13588
-
13589
- /* harmony default export */ __webpack_exports__["a"] = (cloneDeep);
13590
-
13591
-
13592
13714
  /***/ }),
13593
13715
 
13594
13716
  /***/ "bc2f":