@xylabs/lodash 2.10.5 → 2.10.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjsIndex.mjs CHANGED
@@ -748,7 +748,7 @@ var require_lodash = __commonJS({
748
748
  var realNames = {};
749
749
  var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise2), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap);
750
750
  var symbolProto = Symbol2 ? Symbol2.prototype : undefined, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined;
751
- function lodash2(value) {
751
+ function lodash(value) {
752
752
  if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {
753
753
  if (value instanceof LodashWrapper) {
754
754
  return value;
@@ -784,7 +784,7 @@ var require_lodash = __commonJS({
784
784
  this.__index__ = 0;
785
785
  this.__values__ = undefined;
786
786
  }
787
- lodash2.templateSettings = {
787
+ lodash.templateSettings = {
788
788
  /**
789
789
  * Used to detect `data` property values to be HTML-escaped.
790
790
  *
@@ -826,11 +826,11 @@ var require_lodash = __commonJS({
826
826
  * @memberOf _.templateSettings.imports
827
827
  * @type {Function}
828
828
  */
829
- "_": lodash2
829
+ "_": lodash
830
830
  }
831
831
  };
832
- lodash2.prototype = baseLodash.prototype;
833
- lodash2.prototype.constructor = lodash2;
832
+ lodash.prototype = baseLodash.prototype;
833
+ lodash.prototype.constructor = lodash;
834
834
  LodashWrapper.prototype = baseCreate(baseLodash.prototype);
835
835
  LodashWrapper.prototype.constructor = LodashWrapper;
836
836
  function LazyWrapper(value) {
@@ -2741,11 +2741,11 @@ var require_lodash = __commonJS({
2741
2741
  return result2;
2742
2742
  }
2743
2743
  function getHolder(func) {
2744
- var object = hasOwnProperty.call(lodash2, "placeholder") ? lodash2 : func;
2744
+ var object = hasOwnProperty.call(lodash, "placeholder") ? lodash : func;
2745
2745
  return object.placeholder;
2746
2746
  }
2747
2747
  function getIteratee() {
2748
- var result2 = lodash2.iteratee || iteratee;
2748
+ var result2 = lodash.iteratee || iteratee;
2749
2749
  result2 = result2 === iteratee ? baseIteratee : result2;
2750
2750
  return arguments.length ? result2(arguments[0], arguments[1]) : result2;
2751
2751
  }
@@ -2948,7 +2948,7 @@ var require_lodash = __commonJS({
2948
2948
  return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
2949
2949
  }
2950
2950
  function isLaziable(func) {
2951
- var funcName = getFuncName(func), other = lodash2[funcName];
2951
+ var funcName = getFuncName(func), other = lodash[funcName];
2952
2952
  if (typeof other != "function" || !(funcName in LazyWrapper.prototype)) {
2953
2953
  return false;
2954
2954
  }
@@ -3549,7 +3549,7 @@ var require_lodash = __commonJS({
3549
3549
  return unzipWith(arrays, iteratee2);
3550
3550
  });
3551
3551
  function chain(value) {
3552
- var result2 = lodash2(value);
3552
+ var result2 = lodash(value);
3553
3553
  result2.__chain__ = true;
3554
3554
  return result2;
3555
3555
  }
@@ -4665,7 +4665,7 @@ var require_lodash = __commonJS({
4665
4665
  return string.slice(position, position + target.length) == target;
4666
4666
  }
4667
4667
  function template(string, options, guard) {
4668
- var settings = lodash2.templateSettings;
4668
+ var settings = lodash.templateSettings;
4669
4669
  if (guard && isIterateeCall(string, options, guard)) {
4670
4670
  options = undefined;
4671
4671
  }
@@ -5014,324 +5014,324 @@ var require_lodash = __commonJS({
5014
5014
  function sumBy(array, iteratee2) {
5015
5015
  return array && array.length ? baseSum(array, getIteratee(iteratee2, 2)) : 0;
5016
5016
  }
5017
- lodash2.after = after;
5018
- lodash2.ary = ary;
5019
- lodash2.assign = assign;
5020
- lodash2.assignIn = assignIn;
5021
- lodash2.assignInWith = assignInWith;
5022
- lodash2.assignWith = assignWith;
5023
- lodash2.at = at;
5024
- lodash2.before = before;
5025
- lodash2.bind = bind;
5026
- lodash2.bindAll = bindAll;
5027
- lodash2.bindKey = bindKey;
5028
- lodash2.castArray = castArray;
5029
- lodash2.chain = chain;
5030
- lodash2.chunk = chunk;
5031
- lodash2.compact = compact;
5032
- lodash2.concat = concat;
5033
- lodash2.cond = cond;
5034
- lodash2.conforms = conforms;
5035
- lodash2.constant = constant;
5036
- lodash2.countBy = countBy;
5037
- lodash2.create = create;
5038
- lodash2.curry = curry;
5039
- lodash2.curryRight = curryRight;
5040
- lodash2.debounce = debounce;
5041
- lodash2.defaults = defaults;
5042
- lodash2.defaultsDeep = defaultsDeep;
5043
- lodash2.defer = defer;
5044
- lodash2.delay = delay;
5045
- lodash2.difference = difference;
5046
- lodash2.differenceBy = differenceBy;
5047
- lodash2.differenceWith = differenceWith;
5048
- lodash2.drop = drop;
5049
- lodash2.dropRight = dropRight;
5050
- lodash2.dropRightWhile = dropRightWhile;
5051
- lodash2.dropWhile = dropWhile;
5052
- lodash2.fill = fill;
5053
- lodash2.filter = filter;
5054
- lodash2.flatMap = flatMap;
5055
- lodash2.flatMapDeep = flatMapDeep;
5056
- lodash2.flatMapDepth = flatMapDepth;
5057
- lodash2.flatten = flatten;
5058
- lodash2.flattenDeep = flattenDeep;
5059
- lodash2.flattenDepth = flattenDepth;
5060
- lodash2.flip = flip;
5061
- lodash2.flow = flow;
5062
- lodash2.flowRight = flowRight;
5063
- lodash2.fromPairs = fromPairs;
5064
- lodash2.functions = functions;
5065
- lodash2.functionsIn = functionsIn;
5066
- lodash2.groupBy = groupBy;
5067
- lodash2.initial = initial;
5068
- lodash2.intersection = intersection;
5069
- lodash2.intersectionBy = intersectionBy;
5070
- lodash2.intersectionWith = intersectionWith;
5071
- lodash2.invert = invert;
5072
- lodash2.invertBy = invertBy;
5073
- lodash2.invokeMap = invokeMap;
5074
- lodash2.iteratee = iteratee;
5075
- lodash2.keyBy = keyBy;
5076
- lodash2.keys = keys;
5077
- lodash2.keysIn = keysIn;
5078
- lodash2.map = map;
5079
- lodash2.mapKeys = mapKeys;
5080
- lodash2.mapValues = mapValues;
5081
- lodash2.matches = matches;
5082
- lodash2.matchesProperty = matchesProperty;
5083
- lodash2.memoize = memoize;
5084
- lodash2.merge = merge;
5085
- lodash2.mergeWith = mergeWith;
5086
- lodash2.method = method;
5087
- lodash2.methodOf = methodOf;
5088
- lodash2.mixin = mixin;
5089
- lodash2.negate = negate;
5090
- lodash2.nthArg = nthArg;
5091
- lodash2.omit = omit;
5092
- lodash2.omitBy = omitBy;
5093
- lodash2.once = once;
5094
- lodash2.orderBy = orderBy;
5095
- lodash2.over = over;
5096
- lodash2.overArgs = overArgs;
5097
- lodash2.overEvery = overEvery;
5098
- lodash2.overSome = overSome;
5099
- lodash2.partial = partial;
5100
- lodash2.partialRight = partialRight;
5101
- lodash2.partition = partition;
5102
- lodash2.pick = pick;
5103
- lodash2.pickBy = pickBy;
5104
- lodash2.property = property;
5105
- lodash2.propertyOf = propertyOf;
5106
- lodash2.pull = pull;
5107
- lodash2.pullAll = pullAll;
5108
- lodash2.pullAllBy = pullAllBy;
5109
- lodash2.pullAllWith = pullAllWith;
5110
- lodash2.pullAt = pullAt;
5111
- lodash2.range = range;
5112
- lodash2.rangeRight = rangeRight;
5113
- lodash2.rearg = rearg;
5114
- lodash2.reject = reject;
5115
- lodash2.remove = remove;
5116
- lodash2.rest = rest;
5117
- lodash2.reverse = reverse;
5118
- lodash2.sampleSize = sampleSize;
5119
- lodash2.set = set;
5120
- lodash2.setWith = setWith;
5121
- lodash2.shuffle = shuffle;
5122
- lodash2.slice = slice;
5123
- lodash2.sortBy = sortBy;
5124
- lodash2.sortedUniq = sortedUniq;
5125
- lodash2.sortedUniqBy = sortedUniqBy;
5126
- lodash2.split = split;
5127
- lodash2.spread = spread;
5128
- lodash2.tail = tail;
5129
- lodash2.take = take;
5130
- lodash2.takeRight = takeRight;
5131
- lodash2.takeRightWhile = takeRightWhile;
5132
- lodash2.takeWhile = takeWhile;
5133
- lodash2.tap = tap;
5134
- lodash2.throttle = throttle;
5135
- lodash2.thru = thru;
5136
- lodash2.toArray = toArray;
5137
- lodash2.toPairs = toPairs;
5138
- lodash2.toPairsIn = toPairsIn;
5139
- lodash2.toPath = toPath;
5140
- lodash2.toPlainObject = toPlainObject;
5141
- lodash2.transform = transform;
5142
- lodash2.unary = unary;
5143
- lodash2.union = union;
5144
- lodash2.unionBy = unionBy;
5145
- lodash2.unionWith = unionWith;
5146
- lodash2.uniq = uniq;
5147
- lodash2.uniqBy = uniqBy;
5148
- lodash2.uniqWith = uniqWith;
5149
- lodash2.unset = unset;
5150
- lodash2.unzip = unzip;
5151
- lodash2.unzipWith = unzipWith;
5152
- lodash2.update = update;
5153
- lodash2.updateWith = updateWith;
5154
- lodash2.values = values;
5155
- lodash2.valuesIn = valuesIn;
5156
- lodash2.without = without;
5157
- lodash2.words = words;
5158
- lodash2.wrap = wrap;
5159
- lodash2.xor = xor;
5160
- lodash2.xorBy = xorBy;
5161
- lodash2.xorWith = xorWith;
5162
- lodash2.zip = zip;
5163
- lodash2.zipObject = zipObject;
5164
- lodash2.zipObjectDeep = zipObjectDeep;
5165
- lodash2.zipWith = zipWith;
5166
- lodash2.entries = toPairs;
5167
- lodash2.entriesIn = toPairsIn;
5168
- lodash2.extend = assignIn;
5169
- lodash2.extendWith = assignInWith;
5170
- mixin(lodash2, lodash2);
5171
- lodash2.add = add;
5172
- lodash2.attempt = attempt;
5173
- lodash2.camelCase = camelCase;
5174
- lodash2.capitalize = capitalize;
5175
- lodash2.ceil = ceil;
5176
- lodash2.clamp = clamp;
5177
- lodash2.clone = clone;
5178
- lodash2.cloneDeep = cloneDeep;
5179
- lodash2.cloneDeepWith = cloneDeepWith;
5180
- lodash2.cloneWith = cloneWith;
5181
- lodash2.conformsTo = conformsTo;
5182
- lodash2.deburr = deburr;
5183
- lodash2.defaultTo = defaultTo;
5184
- lodash2.divide = divide;
5185
- lodash2.endsWith = endsWith;
5186
- lodash2.eq = eq;
5187
- lodash2.escape = escape;
5188
- lodash2.escapeRegExp = escapeRegExp;
5189
- lodash2.every = every;
5190
- lodash2.find = find;
5191
- lodash2.findIndex = findIndex;
5192
- lodash2.findKey = findKey;
5193
- lodash2.findLast = findLast;
5194
- lodash2.findLastIndex = findLastIndex;
5195
- lodash2.findLastKey = findLastKey;
5196
- lodash2.floor = floor;
5197
- lodash2.forEach = forEach;
5198
- lodash2.forEachRight = forEachRight;
5199
- lodash2.forIn = forIn;
5200
- lodash2.forInRight = forInRight;
5201
- lodash2.forOwn = forOwn;
5202
- lodash2.forOwnRight = forOwnRight;
5203
- lodash2.get = get;
5204
- lodash2.gt = gt;
5205
- lodash2.gte = gte;
5206
- lodash2.has = has;
5207
- lodash2.hasIn = hasIn;
5208
- lodash2.head = head;
5209
- lodash2.identity = identity;
5210
- lodash2.includes = includes;
5211
- lodash2.indexOf = indexOf;
5212
- lodash2.inRange = inRange;
5213
- lodash2.invoke = invoke;
5214
- lodash2.isArguments = isArguments;
5215
- lodash2.isArray = isArray;
5216
- lodash2.isArrayBuffer = isArrayBuffer;
5217
- lodash2.isArrayLike = isArrayLike;
5218
- lodash2.isArrayLikeObject = isArrayLikeObject;
5219
- lodash2.isBoolean = isBoolean;
5220
- lodash2.isBuffer = isBuffer;
5221
- lodash2.isDate = isDate;
5222
- lodash2.isElement = isElement;
5223
- lodash2.isEmpty = isEmpty;
5224
- lodash2.isEqual = isEqual;
5225
- lodash2.isEqualWith = isEqualWith;
5226
- lodash2.isError = isError;
5227
- lodash2.isFinite = isFinite;
5228
- lodash2.isFunction = isFunction;
5229
- lodash2.isInteger = isInteger;
5230
- lodash2.isLength = isLength;
5231
- lodash2.isMap = isMap;
5232
- lodash2.isMatch = isMatch;
5233
- lodash2.isMatchWith = isMatchWith;
5234
- lodash2.isNaN = isNaN;
5235
- lodash2.isNative = isNative;
5236
- lodash2.isNil = isNil;
5237
- lodash2.isNull = isNull;
5238
- lodash2.isNumber = isNumber;
5239
- lodash2.isObject = isObject;
5240
- lodash2.isObjectLike = isObjectLike;
5241
- lodash2.isPlainObject = isPlainObject;
5242
- lodash2.isRegExp = isRegExp;
5243
- lodash2.isSafeInteger = isSafeInteger;
5244
- lodash2.isSet = isSet;
5245
- lodash2.isString = isString;
5246
- lodash2.isSymbol = isSymbol;
5247
- lodash2.isTypedArray = isTypedArray;
5248
- lodash2.isUndefined = isUndefined;
5249
- lodash2.isWeakMap = isWeakMap;
5250
- lodash2.isWeakSet = isWeakSet;
5251
- lodash2.join = join;
5252
- lodash2.kebabCase = kebabCase;
5253
- lodash2.last = last;
5254
- lodash2.lastIndexOf = lastIndexOf;
5255
- lodash2.lowerCase = lowerCase;
5256
- lodash2.lowerFirst = lowerFirst;
5257
- lodash2.lt = lt;
5258
- lodash2.lte = lte;
5259
- lodash2.max = max;
5260
- lodash2.maxBy = maxBy;
5261
- lodash2.mean = mean;
5262
- lodash2.meanBy = meanBy;
5263
- lodash2.min = min;
5264
- lodash2.minBy = minBy;
5265
- lodash2.stubArray = stubArray;
5266
- lodash2.stubFalse = stubFalse;
5267
- lodash2.stubObject = stubObject;
5268
- lodash2.stubString = stubString;
5269
- lodash2.stubTrue = stubTrue;
5270
- lodash2.multiply = multiply;
5271
- lodash2.nth = nth;
5272
- lodash2.noConflict = noConflict;
5273
- lodash2.noop = noop;
5274
- lodash2.now = now;
5275
- lodash2.pad = pad;
5276
- lodash2.padEnd = padEnd;
5277
- lodash2.padStart = padStart;
5278
- lodash2.parseInt = parseInt2;
5279
- lodash2.random = random;
5280
- lodash2.reduce = reduce;
5281
- lodash2.reduceRight = reduceRight;
5282
- lodash2.repeat = repeat;
5283
- lodash2.replace = replace;
5284
- lodash2.result = result;
5285
- lodash2.round = round;
5286
- lodash2.runInContext = runInContext2;
5287
- lodash2.sample = sample;
5288
- lodash2.size = size;
5289
- lodash2.snakeCase = snakeCase;
5290
- lodash2.some = some;
5291
- lodash2.sortedIndex = sortedIndex;
5292
- lodash2.sortedIndexBy = sortedIndexBy;
5293
- lodash2.sortedIndexOf = sortedIndexOf;
5294
- lodash2.sortedLastIndex = sortedLastIndex;
5295
- lodash2.sortedLastIndexBy = sortedLastIndexBy;
5296
- lodash2.sortedLastIndexOf = sortedLastIndexOf;
5297
- lodash2.startCase = startCase;
5298
- lodash2.startsWith = startsWith;
5299
- lodash2.subtract = subtract;
5300
- lodash2.sum = sum;
5301
- lodash2.sumBy = sumBy;
5302
- lodash2.template = template;
5303
- lodash2.times = times;
5304
- lodash2.toFinite = toFinite;
5305
- lodash2.toInteger = toInteger;
5306
- lodash2.toLength = toLength;
5307
- lodash2.toLower = toLower;
5308
- lodash2.toNumber = toNumber;
5309
- lodash2.toSafeInteger = toSafeInteger;
5310
- lodash2.toString = toString;
5311
- lodash2.toUpper = toUpper;
5312
- lodash2.trim = trim;
5313
- lodash2.trimEnd = trimEnd;
5314
- lodash2.trimStart = trimStart;
5315
- lodash2.truncate = truncate;
5316
- lodash2.unescape = unescape;
5317
- lodash2.uniqueId = uniqueId;
5318
- lodash2.upperCase = upperCase;
5319
- lodash2.upperFirst = upperFirst;
5320
- lodash2.each = forEach;
5321
- lodash2.eachRight = forEachRight;
5322
- lodash2.first = head;
5323
- mixin(lodash2, function() {
5017
+ lodash.after = after;
5018
+ lodash.ary = ary;
5019
+ lodash.assign = assign;
5020
+ lodash.assignIn = assignIn;
5021
+ lodash.assignInWith = assignInWith;
5022
+ lodash.assignWith = assignWith;
5023
+ lodash.at = at;
5024
+ lodash.before = before;
5025
+ lodash.bind = bind;
5026
+ lodash.bindAll = bindAll;
5027
+ lodash.bindKey = bindKey;
5028
+ lodash.castArray = castArray;
5029
+ lodash.chain = chain;
5030
+ lodash.chunk = chunk;
5031
+ lodash.compact = compact;
5032
+ lodash.concat = concat;
5033
+ lodash.cond = cond;
5034
+ lodash.conforms = conforms;
5035
+ lodash.constant = constant;
5036
+ lodash.countBy = countBy;
5037
+ lodash.create = create;
5038
+ lodash.curry = curry;
5039
+ lodash.curryRight = curryRight;
5040
+ lodash.debounce = debounce;
5041
+ lodash.defaults = defaults;
5042
+ lodash.defaultsDeep = defaultsDeep;
5043
+ lodash.defer = defer;
5044
+ lodash.delay = delay;
5045
+ lodash.difference = difference;
5046
+ lodash.differenceBy = differenceBy;
5047
+ lodash.differenceWith = differenceWith;
5048
+ lodash.drop = drop;
5049
+ lodash.dropRight = dropRight;
5050
+ lodash.dropRightWhile = dropRightWhile;
5051
+ lodash.dropWhile = dropWhile;
5052
+ lodash.fill = fill;
5053
+ lodash.filter = filter;
5054
+ lodash.flatMap = flatMap;
5055
+ lodash.flatMapDeep = flatMapDeep;
5056
+ lodash.flatMapDepth = flatMapDepth;
5057
+ lodash.flatten = flatten;
5058
+ lodash.flattenDeep = flattenDeep;
5059
+ lodash.flattenDepth = flattenDepth;
5060
+ lodash.flip = flip;
5061
+ lodash.flow = flow;
5062
+ lodash.flowRight = flowRight;
5063
+ lodash.fromPairs = fromPairs;
5064
+ lodash.functions = functions;
5065
+ lodash.functionsIn = functionsIn;
5066
+ lodash.groupBy = groupBy;
5067
+ lodash.initial = initial;
5068
+ lodash.intersection = intersection;
5069
+ lodash.intersectionBy = intersectionBy;
5070
+ lodash.intersectionWith = intersectionWith;
5071
+ lodash.invert = invert;
5072
+ lodash.invertBy = invertBy;
5073
+ lodash.invokeMap = invokeMap;
5074
+ lodash.iteratee = iteratee;
5075
+ lodash.keyBy = keyBy;
5076
+ lodash.keys = keys;
5077
+ lodash.keysIn = keysIn;
5078
+ lodash.map = map;
5079
+ lodash.mapKeys = mapKeys;
5080
+ lodash.mapValues = mapValues;
5081
+ lodash.matches = matches;
5082
+ lodash.matchesProperty = matchesProperty;
5083
+ lodash.memoize = memoize;
5084
+ lodash.merge = merge;
5085
+ lodash.mergeWith = mergeWith;
5086
+ lodash.method = method;
5087
+ lodash.methodOf = methodOf;
5088
+ lodash.mixin = mixin;
5089
+ lodash.negate = negate;
5090
+ lodash.nthArg = nthArg;
5091
+ lodash.omit = omit;
5092
+ lodash.omitBy = omitBy;
5093
+ lodash.once = once;
5094
+ lodash.orderBy = orderBy;
5095
+ lodash.over = over;
5096
+ lodash.overArgs = overArgs;
5097
+ lodash.overEvery = overEvery;
5098
+ lodash.overSome = overSome;
5099
+ lodash.partial = partial;
5100
+ lodash.partialRight = partialRight;
5101
+ lodash.partition = partition;
5102
+ lodash.pick = pick;
5103
+ lodash.pickBy = pickBy;
5104
+ lodash.property = property;
5105
+ lodash.propertyOf = propertyOf;
5106
+ lodash.pull = pull;
5107
+ lodash.pullAll = pullAll;
5108
+ lodash.pullAllBy = pullAllBy;
5109
+ lodash.pullAllWith = pullAllWith;
5110
+ lodash.pullAt = pullAt;
5111
+ lodash.range = range;
5112
+ lodash.rangeRight = rangeRight;
5113
+ lodash.rearg = rearg;
5114
+ lodash.reject = reject;
5115
+ lodash.remove = remove;
5116
+ lodash.rest = rest;
5117
+ lodash.reverse = reverse;
5118
+ lodash.sampleSize = sampleSize;
5119
+ lodash.set = set;
5120
+ lodash.setWith = setWith;
5121
+ lodash.shuffle = shuffle;
5122
+ lodash.slice = slice;
5123
+ lodash.sortBy = sortBy;
5124
+ lodash.sortedUniq = sortedUniq;
5125
+ lodash.sortedUniqBy = sortedUniqBy;
5126
+ lodash.split = split;
5127
+ lodash.spread = spread;
5128
+ lodash.tail = tail;
5129
+ lodash.take = take;
5130
+ lodash.takeRight = takeRight;
5131
+ lodash.takeRightWhile = takeRightWhile;
5132
+ lodash.takeWhile = takeWhile;
5133
+ lodash.tap = tap;
5134
+ lodash.throttle = throttle;
5135
+ lodash.thru = thru;
5136
+ lodash.toArray = toArray;
5137
+ lodash.toPairs = toPairs;
5138
+ lodash.toPairsIn = toPairsIn;
5139
+ lodash.toPath = toPath;
5140
+ lodash.toPlainObject = toPlainObject;
5141
+ lodash.transform = transform;
5142
+ lodash.unary = unary;
5143
+ lodash.union = union;
5144
+ lodash.unionBy = unionBy;
5145
+ lodash.unionWith = unionWith;
5146
+ lodash.uniq = uniq;
5147
+ lodash.uniqBy = uniqBy;
5148
+ lodash.uniqWith = uniqWith;
5149
+ lodash.unset = unset;
5150
+ lodash.unzip = unzip;
5151
+ lodash.unzipWith = unzipWith;
5152
+ lodash.update = update;
5153
+ lodash.updateWith = updateWith;
5154
+ lodash.values = values;
5155
+ lodash.valuesIn = valuesIn;
5156
+ lodash.without = without;
5157
+ lodash.words = words;
5158
+ lodash.wrap = wrap;
5159
+ lodash.xor = xor;
5160
+ lodash.xorBy = xorBy;
5161
+ lodash.xorWith = xorWith;
5162
+ lodash.zip = zip;
5163
+ lodash.zipObject = zipObject;
5164
+ lodash.zipObjectDeep = zipObjectDeep;
5165
+ lodash.zipWith = zipWith;
5166
+ lodash.entries = toPairs;
5167
+ lodash.entriesIn = toPairsIn;
5168
+ lodash.extend = assignIn;
5169
+ lodash.extendWith = assignInWith;
5170
+ mixin(lodash, lodash);
5171
+ lodash.add = add;
5172
+ lodash.attempt = attempt;
5173
+ lodash.camelCase = camelCase;
5174
+ lodash.capitalize = capitalize;
5175
+ lodash.ceil = ceil;
5176
+ lodash.clamp = clamp;
5177
+ lodash.clone = clone;
5178
+ lodash.cloneDeep = cloneDeep;
5179
+ lodash.cloneDeepWith = cloneDeepWith;
5180
+ lodash.cloneWith = cloneWith;
5181
+ lodash.conformsTo = conformsTo;
5182
+ lodash.deburr = deburr;
5183
+ lodash.defaultTo = defaultTo;
5184
+ lodash.divide = divide;
5185
+ lodash.endsWith = endsWith;
5186
+ lodash.eq = eq;
5187
+ lodash.escape = escape;
5188
+ lodash.escapeRegExp = escapeRegExp;
5189
+ lodash.every = every;
5190
+ lodash.find = find;
5191
+ lodash.findIndex = findIndex;
5192
+ lodash.findKey = findKey;
5193
+ lodash.findLast = findLast;
5194
+ lodash.findLastIndex = findLastIndex;
5195
+ lodash.findLastKey = findLastKey;
5196
+ lodash.floor = floor;
5197
+ lodash.forEach = forEach;
5198
+ lodash.forEachRight = forEachRight;
5199
+ lodash.forIn = forIn;
5200
+ lodash.forInRight = forInRight;
5201
+ lodash.forOwn = forOwn;
5202
+ lodash.forOwnRight = forOwnRight;
5203
+ lodash.get = get;
5204
+ lodash.gt = gt;
5205
+ lodash.gte = gte;
5206
+ lodash.has = has;
5207
+ lodash.hasIn = hasIn;
5208
+ lodash.head = head;
5209
+ lodash.identity = identity;
5210
+ lodash.includes = includes;
5211
+ lodash.indexOf = indexOf;
5212
+ lodash.inRange = inRange;
5213
+ lodash.invoke = invoke;
5214
+ lodash.isArguments = isArguments;
5215
+ lodash.isArray = isArray;
5216
+ lodash.isArrayBuffer = isArrayBuffer;
5217
+ lodash.isArrayLike = isArrayLike;
5218
+ lodash.isArrayLikeObject = isArrayLikeObject;
5219
+ lodash.isBoolean = isBoolean;
5220
+ lodash.isBuffer = isBuffer;
5221
+ lodash.isDate = isDate;
5222
+ lodash.isElement = isElement;
5223
+ lodash.isEmpty = isEmpty;
5224
+ lodash.isEqual = isEqual;
5225
+ lodash.isEqualWith = isEqualWith;
5226
+ lodash.isError = isError;
5227
+ lodash.isFinite = isFinite;
5228
+ lodash.isFunction = isFunction;
5229
+ lodash.isInteger = isInteger;
5230
+ lodash.isLength = isLength;
5231
+ lodash.isMap = isMap;
5232
+ lodash.isMatch = isMatch;
5233
+ lodash.isMatchWith = isMatchWith;
5234
+ lodash.isNaN = isNaN;
5235
+ lodash.isNative = isNative;
5236
+ lodash.isNil = isNil;
5237
+ lodash.isNull = isNull;
5238
+ lodash.isNumber = isNumber;
5239
+ lodash.isObject = isObject;
5240
+ lodash.isObjectLike = isObjectLike;
5241
+ lodash.isPlainObject = isPlainObject;
5242
+ lodash.isRegExp = isRegExp;
5243
+ lodash.isSafeInteger = isSafeInteger;
5244
+ lodash.isSet = isSet;
5245
+ lodash.isString = isString;
5246
+ lodash.isSymbol = isSymbol;
5247
+ lodash.isTypedArray = isTypedArray;
5248
+ lodash.isUndefined = isUndefined;
5249
+ lodash.isWeakMap = isWeakMap;
5250
+ lodash.isWeakSet = isWeakSet;
5251
+ lodash.join = join;
5252
+ lodash.kebabCase = kebabCase;
5253
+ lodash.last = last;
5254
+ lodash.lastIndexOf = lastIndexOf;
5255
+ lodash.lowerCase = lowerCase;
5256
+ lodash.lowerFirst = lowerFirst;
5257
+ lodash.lt = lt;
5258
+ lodash.lte = lte;
5259
+ lodash.max = max;
5260
+ lodash.maxBy = maxBy;
5261
+ lodash.mean = mean;
5262
+ lodash.meanBy = meanBy;
5263
+ lodash.min = min;
5264
+ lodash.minBy = minBy;
5265
+ lodash.stubArray = stubArray;
5266
+ lodash.stubFalse = stubFalse;
5267
+ lodash.stubObject = stubObject;
5268
+ lodash.stubString = stubString;
5269
+ lodash.stubTrue = stubTrue;
5270
+ lodash.multiply = multiply;
5271
+ lodash.nth = nth;
5272
+ lodash.noConflict = noConflict;
5273
+ lodash.noop = noop;
5274
+ lodash.now = now;
5275
+ lodash.pad = pad;
5276
+ lodash.padEnd = padEnd;
5277
+ lodash.padStart = padStart;
5278
+ lodash.parseInt = parseInt2;
5279
+ lodash.random = random;
5280
+ lodash.reduce = reduce;
5281
+ lodash.reduceRight = reduceRight;
5282
+ lodash.repeat = repeat;
5283
+ lodash.replace = replace;
5284
+ lodash.result = result;
5285
+ lodash.round = round;
5286
+ lodash.runInContext = runInContext2;
5287
+ lodash.sample = sample;
5288
+ lodash.size = size;
5289
+ lodash.snakeCase = snakeCase;
5290
+ lodash.some = some;
5291
+ lodash.sortedIndex = sortedIndex;
5292
+ lodash.sortedIndexBy = sortedIndexBy;
5293
+ lodash.sortedIndexOf = sortedIndexOf;
5294
+ lodash.sortedLastIndex = sortedLastIndex;
5295
+ lodash.sortedLastIndexBy = sortedLastIndexBy;
5296
+ lodash.sortedLastIndexOf = sortedLastIndexOf;
5297
+ lodash.startCase = startCase;
5298
+ lodash.startsWith = startsWith;
5299
+ lodash.subtract = subtract;
5300
+ lodash.sum = sum;
5301
+ lodash.sumBy = sumBy;
5302
+ lodash.template = template;
5303
+ lodash.times = times;
5304
+ lodash.toFinite = toFinite;
5305
+ lodash.toInteger = toInteger;
5306
+ lodash.toLength = toLength;
5307
+ lodash.toLower = toLower;
5308
+ lodash.toNumber = toNumber;
5309
+ lodash.toSafeInteger = toSafeInteger;
5310
+ lodash.toString = toString;
5311
+ lodash.toUpper = toUpper;
5312
+ lodash.trim = trim;
5313
+ lodash.trimEnd = trimEnd;
5314
+ lodash.trimStart = trimStart;
5315
+ lodash.truncate = truncate;
5316
+ lodash.unescape = unescape;
5317
+ lodash.uniqueId = uniqueId;
5318
+ lodash.upperCase = upperCase;
5319
+ lodash.upperFirst = upperFirst;
5320
+ lodash.each = forEach;
5321
+ lodash.eachRight = forEachRight;
5322
+ lodash.first = head;
5323
+ mixin(lodash, function() {
5324
5324
  var source = {};
5325
- baseForOwn(lodash2, function(func, methodName) {
5326
- if (!hasOwnProperty.call(lodash2.prototype, methodName)) {
5325
+ baseForOwn(lodash, function(func, methodName) {
5326
+ if (!hasOwnProperty.call(lodash.prototype, methodName)) {
5327
5327
  source[methodName] = func;
5328
5328
  }
5329
5329
  });
5330
5330
  return source;
5331
5331
  }(), { "chain": false });
5332
- lodash2.VERSION = VERSION;
5332
+ lodash.VERSION = VERSION;
5333
5333
  arrayEach(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(methodName) {
5334
- lodash2[methodName].placeholder = lodash2;
5334
+ lodash[methodName].placeholder = lodash;
5335
5335
  });
5336
5336
  arrayEach(["drop", "take"], function(methodName, index) {
5337
5337
  LazyWrapper.prototype[methodName] = function(n) {
@@ -5419,14 +5419,14 @@ var require_lodash = __commonJS({
5419
5419
  return this.take(MAX_ARRAY_LENGTH);
5420
5420
  };
5421
5421
  baseForOwn(LazyWrapper.prototype, function(func, methodName) {
5422
- var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash2[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
5422
+ var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
5423
5423
  if (!lodashFunc) {
5424
5424
  return;
5425
5425
  }
5426
- lodash2.prototype[methodName] = function() {
5426
+ lodash.prototype[methodName] = function() {
5427
5427
  var value = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray(value);
5428
5428
  var interceptor = function(value2) {
5429
- var result3 = lodashFunc.apply(lodash2, arrayPush([value2], args));
5429
+ var result3 = lodashFunc.apply(lodash, arrayPush([value2], args));
5430
5430
  return isTaker && chainAll ? result3[0] : result3;
5431
5431
  };
5432
5432
  if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
@@ -5448,7 +5448,7 @@ var require_lodash = __commonJS({
5448
5448
  });
5449
5449
  arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
5450
5450
  var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
5451
- lodash2.prototype[methodName] = function() {
5451
+ lodash.prototype[methodName] = function() {
5452
5452
  var args = arguments;
5453
5453
  if (retUnwrapped && !this.__chain__) {
5454
5454
  var value = this.value();
@@ -5460,7 +5460,7 @@ var require_lodash = __commonJS({
5460
5460
  };
5461
5461
  });
5462
5462
  baseForOwn(LazyWrapper.prototype, function(func, methodName) {
5463
- var lodashFunc = lodash2[methodName];
5463
+ var lodashFunc = lodash[methodName];
5464
5464
  if (lodashFunc) {
5465
5465
  var key = lodashFunc.name + "";
5466
5466
  if (!hasOwnProperty.call(realNames, key)) {
@@ -5476,18 +5476,18 @@ var require_lodash = __commonJS({
5476
5476
  LazyWrapper.prototype.clone = lazyClone;
5477
5477
  LazyWrapper.prototype.reverse = lazyReverse;
5478
5478
  LazyWrapper.prototype.value = lazyValue;
5479
- lodash2.prototype.at = wrapperAt;
5480
- lodash2.prototype.chain = wrapperChain;
5481
- lodash2.prototype.commit = wrapperCommit;
5482
- lodash2.prototype.next = wrapperNext;
5483
- lodash2.prototype.plant = wrapperPlant;
5484
- lodash2.prototype.reverse = wrapperReverse;
5485
- lodash2.prototype.toJSON = lodash2.prototype.valueOf = lodash2.prototype.value = wrapperValue;
5486
- lodash2.prototype.first = lodash2.prototype.head;
5479
+ lodash.prototype.at = wrapperAt;
5480
+ lodash.prototype.chain = wrapperChain;
5481
+ lodash.prototype.commit = wrapperCommit;
5482
+ lodash.prototype.next = wrapperNext;
5483
+ lodash.prototype.plant = wrapperPlant;
5484
+ lodash.prototype.reverse = wrapperReverse;
5485
+ lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
5486
+ lodash.prototype.first = lodash.prototype.head;
5487
5487
  if (symIterator) {
5488
- lodash2.prototype[symIterator] = wrapperToIterator;
5488
+ lodash.prototype[symIterator] = wrapperToIterator;
5489
5489
  }
5490
- return lodash2;
5490
+ return lodash;
5491
5491
  };
5492
5492
  var _ = runInContext();
5493
5493
  if (typeof define == "function" && typeof define.amd == "object" && define.amd) {
@@ -5506,11 +5506,13 @@ var require_lodash = __commonJS({
5506
5506
  });
5507
5507
 
5508
5508
  // src/cjsIndex.ts
5509
- var import_lodash = __toESM(require_lodash());
5510
- var cjsIndex_default = import_lodash.default;
5511
- export {
5512
- cjsIndex_default as default
5513
- };
5509
+ var require_cjsIndex = __commonJS({
5510
+ "src/cjsIndex.ts"(exports, module) {
5511
+ var import_lodash = __toESM(require_lodash());
5512
+ module.exports = import_lodash.default;
5513
+ }
5514
+ });
5515
+ export default require_cjsIndex();
5514
5516
  /*! Bundled license information:
5515
5517
 
5516
5518
  lodash/lodash.js: