@dereekb/util 13.15.0 → 13.16.0

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/index.esm.js CHANGED
@@ -383,7 +383,7 @@ function _unsupported_iterable_to_array$B(o, minLen) {
383
383
  * @throws {Error} If input is not an array.
384
384
  */ function wrapTuples(input) {
385
385
  if (!Array.isArray(input)) {
386
- throw new Error('Input is not an array/tuple...');
386
+ throw new TypeError('Input is not an array/tuple...');
387
387
  }
388
388
  var result;
389
389
  // check if the first item is an array. Tuples can contain arrays as the first value.
@@ -468,7 +468,7 @@ function _unsupported_iterable_to_array$A(o, minLen) {
468
468
  * @dbxUtilTags array, convert, ensure, normalize, maybe, nullish
469
469
  * @dbxUtilRelated convert-maybe-to-non-empty-array, convert-to-array, as-array
470
470
  */ function convertMaybeToArray(arrayOrValue) {
471
- return arrayOrValue != null ? convertToArray(arrayOrValue) : [];
471
+ return arrayOrValue == null ? [] : convertToArray(arrayOrValue);
472
472
  }
473
473
  /**
474
474
  * Alias for {@link convertMaybeToArray}. Converts a maybe value or array into an array, returning an empty array for nullish input.
@@ -1073,9 +1073,9 @@ function _unsupported_iterable_to_array$z(o, minLen) {
1073
1073
  * @param values - The values to filter.
1074
1074
  * @returns Intersection between the input values and the reference set.
1075
1075
  */ function keepFromSetCopy(set, values) {
1076
- return values != null ? filterValuesToSet(asIterable(values), function(x) {
1076
+ return values == null ? new Set() : filterValuesToSet(asIterable(values), function(x) {
1077
1077
  return set.has(x);
1078
- }) : new Set();
1078
+ });
1079
1079
  }
1080
1080
  /**
1081
1081
  * Filters the array to only include values that exist in the given set.
@@ -1272,15 +1272,15 @@ function _unsupported_iterable_to_array$z(o, minLen) {
1272
1272
  var set;
1273
1273
  if (config.keysToFind != null) {
1274
1274
  set = asSet(config.keysToFind);
1275
- } else if (config.valuesToFind != null) {
1276
- set = readKeysSetFrom(readKey, config.valuesToFind);
1277
- } else {
1275
+ } else if (config.valuesToFind == null) {
1278
1276
  set = new Set();
1277
+ } else {
1278
+ set = readKeysSetFrom(readKey, config.valuesToFind);
1279
1279
  }
1280
1280
  var filterFn = setHasValueFunction(set, exclude);
1281
1281
  return values.filter(function(x) {
1282
1282
  var key = readKey(x);
1283
- return key != null ? filterFn(key) : exclude;
1283
+ return key == null ? exclude : filterFn(key);
1284
1284
  });
1285
1285
  }
1286
1286
  /**
@@ -1836,12 +1836,12 @@ function _type_of$l(obj) {
1836
1836
  */ function filterMaybeArrayFunction(filterFn) {
1837
1837
  return function(values) {
1838
1838
  var result;
1839
- if (values != null) {
1839
+ if (values == null) {
1840
+ result = [];
1841
+ } else {
1840
1842
  result = values.filter(function(v, i, arr) {
1841
1843
  return filterFn(v, i, arr);
1842
1844
  });
1843
- } else {
1844
- result = [];
1845
1845
  }
1846
1846
  return result;
1847
1847
  };
@@ -2191,7 +2191,7 @@ function _unsupported_iterable_to_array$x(o, minLen) {
2191
2191
  * @param readKey - Function to extract a key from a value.
2192
2192
  * @returns Flat array of resolved non-null keys.
2193
2193
  */ function readKeysFromFilterUniqueFunctionAdditionalKeysInput(additionalKeysInput, readKey) {
2194
- return filterMaybeArrayValues(additionalKeysInput != null ? Array.isArray(additionalKeysInput) ? additionalKeysInput : readKeysFromFilterUniqueFunctionAdditionalKeys(additionalKeysInput, readKey) : []);
2194
+ return filterMaybeArrayValues(additionalKeysInput == null ? [] : Array.isArray(additionalKeysInput) ? additionalKeysInput : readKeysFromFilterUniqueFunctionAdditionalKeys(additionalKeysInput, readKey));
2195
2195
  }
2196
2196
  /**
2197
2197
  * Reads keys from a {@link FilterUniqueFunctionAdditionalKeys} object by combining explicit keys with keys derived from values.
@@ -3466,12 +3466,12 @@ function makeValuesGroupMap(values, groupKeyFn) {
3466
3466
  values.forEach(function(x) {
3467
3467
  var key = groupKeyFn(x);
3468
3468
  var array = map.get(key);
3469
- if (array != null) {
3470
- array.push(x);
3471
- } else {
3469
+ if (array == null) {
3472
3470
  map.set(key, [
3473
3471
  x
3474
3472
  ]);
3473
+ } else {
3474
+ array.push(x);
3475
3475
  }
3476
3476
  });
3477
3477
  }
@@ -3771,7 +3771,7 @@ function _unsupported_iterable_to_array$s(o, minLen) {
3771
3771
  var selectedValuesSet = new Set(selectedValues);
3772
3772
  return function(value) {
3773
3773
  var key = readKey(value);
3774
- return key != null ? selectedValuesSet.has(key) : defaultIfKeyNull;
3774
+ return key == null ? defaultIfKeyNull : selectedValuesSet.has(key);
3775
3775
  };
3776
3776
  };
3777
3777
  }
@@ -4652,14 +4652,14 @@ var DOLLAR_AMOUNT_STRING_REGEX = /^\$?(\d+)\.?(\d\d)$/;
4652
4652
  var min = config.min, max = config.max, roundConfig = config.round;
4653
4653
  var round = roundingInput !== null && roundingInput !== void 0 ? roundingInput : roundConfig;
4654
4654
  var fn;
4655
- if (min != null) {
4656
- var range = max - min;
4655
+ if (min == null) {
4657
4656
  fn = function fn() {
4658
- return Math.random() * range + min;
4657
+ return Math.random() * max;
4659
4658
  };
4660
4659
  } else {
4660
+ var range = max - min;
4661
4661
  fn = function fn() {
4662
- return Math.random() * max;
4662
+ return Math.random() * range + min;
4663
4663
  };
4664
4664
  }
4665
4665
  if (round && round !== 'none') {
@@ -5192,7 +5192,7 @@ function reduceNumbersFn(reduceFn, emptyArrayValue) {
5192
5192
  * @param input - Optional initial values to populate the set.
5193
5193
  * @returns A HashSet keyed by index number.
5194
5194
  */ function hashSetForIndexed(input) {
5195
- var values = input != null ? asArray(input) : undefined;
5195
+ var values = input == null ? undefined : asArray(input);
5196
5196
  return new HashSet({
5197
5197
  readKey: readIndexNumber
5198
5198
  }, values);
@@ -6532,6 +6532,84 @@ function caseInsensitiveString(input) {
6532
6532
  */ function splitJoinNameString(input) {
6533
6533
  return SPACE_STRING_SPLIT_JOIN.splitJoinRemainder(input, 2);
6534
6534
  }
6535
+ /**
6536
+ * Default maximum number of initials produced by a {@link NameToInitialsFunction}.
6537
+ */ var DEFAULT_NAME_TO_INITIALS_MAX_INITIALS = 2;
6538
+ /**
6539
+ * Default minimum number of initials produced by a {@link NameToInitialsFunction}.
6540
+ */ var DEFAULT_NAME_TO_INITIALS_MIN_INITIALS = 1;
6541
+ /**
6542
+ * Creates a {@link NameToInitialsFunction} that derives display initials from a name or short character string.
6543
+ *
6544
+ * Useful for avatar fallbacks where a name (e.g. `'Michelle B'`) or a literal token (e.g. `'BB'`)
6545
+ * should collapse to a compact label. By default a single-word input yields a single initial; raise
6546
+ * `minInitials` to pull more leading characters from a lone word.
6547
+ *
6548
+ * @param config - Configuration controlling the minimum and maximum number of initials.
6549
+ * @returns A reusable function that derives initials from input names.
6550
+ *
6551
+ * @dbxUtil
6552
+ * @dbxUtilCategory string
6553
+ * @dbxUtilKind factory
6554
+ * @dbxUtilTags string, name, initials, avatar, abbreviate, person, factory
6555
+ * @dbxUtilRelated split-join-name-string, capitalize-first-letter
6556
+ *
6557
+ * @example
6558
+ * ```ts
6559
+ * const toInitials = nameToInitialsFactory();
6560
+ * toInitials('Michelle B'); // 'MB'
6561
+ * toInitials('Michelle'); // 'M'
6562
+ *
6563
+ * const toPaddedInitials = nameToInitialsFactory({ minInitials: 2 });
6564
+ * toPaddedInitials('Michelle'); // 'MI'
6565
+ * toPaddedInitials('BB'); // 'BB'
6566
+ * ```
6567
+ *
6568
+ * @__NO_SIDE_EFFECTS__
6569
+ */ function nameToInitialsFactory(config) {
6570
+ var _ref, _ref1;
6571
+ var maxInitials = (_ref = config === null || config === void 0 ? void 0 : config.maxInitials) !== null && _ref !== void 0 ? _ref : DEFAULT_NAME_TO_INITIALS_MAX_INITIALS;
6572
+ var minInitials = Math.min((_ref1 = config === null || config === void 0 ? void 0 : config.minInitials) !== null && _ref1 !== void 0 ? _ref1 : DEFAULT_NAME_TO_INITIALS_MIN_INITIALS, maxInitials);
6573
+ return function(name) {
6574
+ var trimmed = name.trim();
6575
+ var result;
6576
+ if (trimmed) {
6577
+ var words = trimmed.split(/\s+/);
6578
+ if (words.length > 1) {
6579
+ result = words.slice(0, maxInitials).map(function(word) {
6580
+ return word.charAt(0);
6581
+ }).join('');
6582
+ } else {
6583
+ result = words[0].slice(0, minInitials);
6584
+ }
6585
+ } else {
6586
+ result = '';
6587
+ }
6588
+ return result.toUpperCase();
6589
+ };
6590
+ }
6591
+ /**
6592
+ * Derives display initials from a name or short character string using the default configuration.
6593
+ *
6594
+ * Multi-word inputs use the first character of each of the first two words; single-word inputs use
6595
+ * the first character verbatim. The result is always uppercased.
6596
+ *
6597
+ * @param name - Name or character string to derive initials from.
6598
+ * @returns Uppercased initials, or an empty string when the input is blank.
6599
+ *
6600
+ * @dbxUtil
6601
+ * @dbxUtilCategory string
6602
+ * @dbxUtilTags string, name, initials, avatar, abbreviate, person
6603
+ * @dbxUtilRelated name-to-initials-factory, split-join-name-string, capitalize-first-letter
6604
+ *
6605
+ * @example
6606
+ * ```ts
6607
+ * nameToInitials('Michelle B'); // 'MB'
6608
+ * nameToInitials('A'); // 'A'
6609
+ * nameToInitials('BB'); // 'B'
6610
+ * nameToInitials('Michelle'); // 'M'
6611
+ * ```
6612
+ */ var nameToInitials = nameToInitialsFactory();
6535
6613
  /**
6536
6614
  * Creates a string that repeats the given string a specified number of times.
6537
6615
  *
@@ -6567,7 +6645,7 @@ function caseInsensitiveString(input) {
6567
6645
  */ function cutStringFunction(config) {
6568
6646
  var inputMaxLength = config.maxLength, maxLengthIncludesEndText = config.maxLengthIncludesEndText, inputEndText = config.endText;
6569
6647
  var endText = inputEndText === undefined ? DEFAULT_CUT_STRING_END_TEXT : '';
6570
- var maxLength = maxLengthIncludesEndText !== false ? inputMaxLength - endText.length : inputMaxLength;
6648
+ var maxLength = maxLengthIncludesEndText === false ? inputMaxLength : inputMaxLength - endText.length;
6571
6649
  return function(input) {
6572
6650
  var result = input;
6573
6651
  if (input != null) {
@@ -6779,12 +6857,12 @@ function caseInsensitiveString(input) {
6779
6857
  }
6780
6858
  var transform = baseTransform;
6781
6859
  if (config.trim) {
6782
- if (baseTransform != null) {
6860
+ if (baseTransform == null) {
6861
+ transform = stringTrimFunction;
6862
+ } else {
6783
6863
  transform = function transform(x) {
6784
6864
  return baseTransform(stringTrimFunction(x));
6785
6865
  };
6786
- } else {
6787
- transform = stringTrimFunction;
6788
6866
  }
6789
6867
  }
6790
6868
  transform !== null && transform !== void 0 ? transform : transform = MAP_IDENTITY;
@@ -7579,15 +7657,15 @@ function _unsupported_iterable_to_array$r(o, minLen) {
7579
7657
  * @__NO_SIDE_EFFECTS__
7580
7658
  */ function filterKeyValueTuplesFunction(filter) {
7581
7659
  var result;
7582
- if (filter != null) {
7660
+ if (filter == null) {
7661
+ result = allKeyValueTuples;
7662
+ } else {
7583
7663
  var filterFn = filterKeyValueTupleFunction(filter);
7584
7664
  result = function result(obj) {
7585
7665
  return allKeyValueTuples(obj).filter(function(kv, i) {
7586
7666
  return filterFn(kv, i);
7587
7667
  });
7588
7668
  };
7589
- } else {
7590
- result = allKeyValueTuples;
7591
7669
  }
7592
7670
  return result;
7593
7671
  }
@@ -8019,10 +8097,10 @@ function _unsupported_iterable_to_array$q(o, minLen) {
8019
8097
  * @__NO_SIDE_EFFECTS__
8020
8098
  */ function overrideInObjectFunctionFactory(param) {
8021
8099
  var filter = param.filter, copy = param.copy, _param_dynamic = param.dynamic, dynamic = _param_dynamic === void 0 ? false : _param_dynamic;
8022
- var filterToRelevantValuesObject = filter != null ? filterFromPOJOFunction({
8100
+ var filterToRelevantValuesObject = filter == null ? defaultFilterFromPOJOFunctionNoCopy : filterFromPOJOFunction({
8023
8101
  filter: filter,
8024
8102
  copy: false
8025
- }) : defaultFilterFromPOJOFunctionNoCopy;
8103
+ });
8026
8104
  return function(from) {
8027
8105
  var rebuildTemplate = function rebuildTemplate() {
8028
8106
  var template = {};
@@ -8835,7 +8913,7 @@ function isInSetDecisionFunction(set, inputReadValue) {
8835
8913
  * @param input
8836
8914
  * @returns
8837
8915
  */ function maybeSet(input) {
8838
- return input != null ? new Set(asArray(input)) : input;
8916
+ return input == null ? input : new Set(asArray(input));
8839
8917
  }
8840
8918
 
8841
8919
  function _array_like_to_array$p(arr, len) {
@@ -8929,7 +9007,7 @@ var DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE = null;
8929
9007
  // since checking uses equivalence, the objects will never match equivalence via the === properly.
8930
9008
  // AuthRoleClaimsFactoryConfigEntryEncodeOptions is likely to be used for these cases unknownways, but this will help avoid unexpected errors.
8931
9009
  if ((typeof expectedValue === "undefined" ? "undefined" : _type_of$d(expectedValue)) === 'object') {
8932
- throw new Error("failed decoding claims. Expected value to be a string or number. Object isn't supported with simple claims.");
9010
+ throw new TypeError("failed decoding claims. Expected value to be a string or number. Object isn't supported with simple claims.");
8933
9011
  }
8934
9012
  if (inverse) {
8935
9013
  var inverseMode = inverse === true ? 'any' : inverse;
@@ -11039,13 +11117,13 @@ function _unsupported_iterable_to_array$n(o, minLen) {
11039
11117
  ]) : splitAt;
11040
11118
  var firstOccurence = findFirstCharacterOccurence(splitSet, input);
11041
11119
  var result;
11042
- if (firstOccurence != null) {
11043
- result = splitStringAtIndex(input, firstOccurence, false);
11044
- } else {
11120
+ if (firstOccurence == null) {
11045
11121
  result = [
11046
11122
  input,
11047
11123
  undefined
11048
11124
  ];
11125
+ } else {
11126
+ result = splitStringAtIndex(input, firstOccurence, false);
11049
11127
  }
11050
11128
  return result;
11051
11129
  };
@@ -12435,7 +12513,7 @@ function _unsupported_iterable_to_array$l(o, minLen) {
12435
12513
  * @returns Whether the input is a standard internet-accessible website URL.
12436
12514
  */ function isStandardInternetAccessibleWebsiteUrl(input) {
12437
12515
  var protocol = readWebsiteProtocol(input);
12438
- return hasWebsiteTopLevelDomain(input) && (protocol != null ? isKnownHttpWebsiteProtocol(protocol) : true);
12516
+ return hasWebsiteTopLevelDomain(input) && (protocol == null ? true : isKnownHttpWebsiteProtocol(protocol));
12439
12517
  }
12440
12518
  /**
12441
12519
  * Creates a {@link WebsiteUrl} by merging the base path with additional path segments, preserving the original protocol.
@@ -12473,22 +12551,22 @@ function _unsupported_iterable_to_array$l(o, minLen) {
12473
12551
  var config = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
12474
12552
  var removeQueryParameters = config.removeQueryParameters, ignoredBasePath = config.ignoredBasePath, isolatePathComponents = config.isolatePathComponents, removeTrailingSlash = config.removeTrailingSlash;
12475
12553
  var basePathRegex = ignoredBasePath ? new RegExp('^' + escapeStringForRegex(toAbsoluteSlashPathStartType(ignoredBasePath))) : undefined;
12476
- var isolateRange = isolatePathComponents != null ? isolateSlashPathFunction({
12554
+ var isolateRange = isolatePathComponents == null ? undefined : isolateSlashPathFunction({
12477
12555
  range: isolatePathComponents,
12478
12556
  startType: 'absolute'
12479
- }) : undefined;
12557
+ });
12480
12558
  var replaceTrailingSlash = removeTrailingSlash === true ? replaceLastCharacterIfIsFunction('', SLASH_PATH_SEPARATOR) : undefined;
12481
12559
  var pathTransform = chainMapSameFunctions([
12482
12560
  // remove any base path
12483
- basePathRegex != null ? function(inputPath) {
12561
+ basePathRegex == null ? undefined : function(inputPath) {
12484
12562
  return inputPath.replace(basePathRegex, '');
12485
- } : undefined,
12563
+ },
12486
12564
  // remove the query parameters
12487
- removeQueryParameters != null ? function(inputPath) {
12565
+ removeQueryParameters == null ? undefined : function(inputPath) {
12488
12566
  return websitePathAndQueryPair(inputPath).path;
12489
- } : undefined,
12567
+ },
12490
12568
  // isolate range
12491
- isolateRange != null ? function(inputPath) {
12569
+ isolateRange == null ? undefined : function(inputPath) {
12492
12570
  var result = isolateRange(inputPath);
12493
12571
  // retain the query if one is available.
12494
12572
  if (removeQueryParameters !== true) {
@@ -12498,12 +12576,12 @@ function _unsupported_iterable_to_array$l(o, minLen) {
12498
12576
  }
12499
12577
  }
12500
12578
  return result;
12501
- } : undefined,
12579
+ },
12502
12580
  // remove trailing slash from path
12503
- replaceTrailingSlash != null ? function(inputPath) {
12581
+ replaceTrailingSlash == null ? undefined : function(inputPath) {
12504
12582
  var _websitePathAndQueryPair = websitePathAndQueryPair(inputPath), path = _websitePathAndQueryPair.path, query = _websitePathAndQueryPair.query;
12505
12583
  return replaceTrailingSlash(path) + (query !== null && query !== void 0 ? query : '');
12506
- } : undefined
12584
+ }
12507
12585
  ]);
12508
12586
  return function(input) {
12509
12587
  return pathTransform(websitePathFromWebsiteUrl(input));
@@ -12822,9 +12900,7 @@ function _unsupported_iterable_to_array$k(o, minLen) {
12822
12900
  */ function coerceToEmailParticipants(param) {
12823
12901
  var _param_participants = param.participants, participants = _param_participants === void 0 ? [] : _param_participants, _param_emails = param.emails, emails = _param_emails === void 0 ? [] : _param_emails;
12824
12902
  var result;
12825
- if (!emails.length) {
12826
- result = participants;
12827
- } else {
12903
+ if (emails.length) {
12828
12904
  var participantEmails = participants.map(function(x) {
12829
12905
  return x.email;
12830
12906
  });
@@ -12834,6 +12910,8 @@ function _unsupported_iterable_to_array$k(o, minLen) {
12834
12910
  email: email
12835
12911
  };
12836
12912
  })));
12913
+ } else {
12914
+ result = participants;
12837
12915
  }
12838
12916
  return result;
12839
12917
  }
@@ -14062,7 +14140,9 @@ function _unsupported_iterable_to_array$g(o, minLen) {
14062
14140
  */ function primativeKeyDencoderMap(values) {
14063
14141
  var map = new Map();
14064
14142
  var valuesArray;
14065
- if (!Array.isArray(values)) {
14143
+ if (Array.isArray(values)) {
14144
+ valuesArray = values;
14145
+ } else {
14066
14146
  valuesArray = [];
14067
14147
  forEachKeyValue(values, {
14068
14148
  forEach: function forEach(pair) {
@@ -14070,8 +14150,6 @@ function _unsupported_iterable_to_array$g(o, minLen) {
14070
14150
  },
14071
14151
  filter: KeyValueTypleValueFilter.UNDEFINED
14072
14152
  });
14073
- } else {
14074
- valuesArray = values;
14075
14153
  }
14076
14154
  valuesArray.forEach(function(value) {
14077
14155
  var _value = _sliced_to_array$c(value, 2), d = _value[0], e = _value[1];
@@ -14361,7 +14439,7 @@ function _unsupported_iterable_to_array$g(o, minLen) {
14361
14439
  * // true
14362
14440
  * ```
14363
14441
  */ function isCompleteUnitedStatesAddress(input) {
14364
- return input != null ? Boolean(input.line1 && input.city && input.state && input.zip) : false;
14442
+ return input == null ? false : Boolean(input.line1 && input.city && input.state && input.zip);
14365
14443
  }
14366
14444
  /**
14367
14445
  * Regex that matches valid two-letter US state and territory codes (uppercase only).
@@ -14442,8 +14520,8 @@ function _unsupported_iterable_to_array$g(o, minLen) {
14442
14520
  */ function vectorMinimumSizeResizeFunction(minSize) {
14443
14521
  return function(input) {
14444
14522
  return {
14445
- x: minSize.x != null ? Math.max(input.x, minSize.x) : input.x,
14446
- y: minSize.y != null ? Math.max(input.y, minSize.y) : input.y
14523
+ x: minSize.x == null ? input.x : Math.max(input.x, minSize.x),
14524
+ y: minSize.y == null ? input.y : Math.max(input.y, minSize.y)
14447
14525
  };
14448
14526
  };
14449
14527
  }
@@ -15085,8 +15163,8 @@ function latLngString(lat, lng) {
15085
15163
  * @__NO_SIDE_EFFECTS__
15086
15164
  */ function latLngPointFunction(config) {
15087
15165
  var _ref = config !== null && config !== void 0 ? config : {}, validate = _ref.validate, wrap = _ref.wrap, defaultValue = _ref.default, _ref_precision = _ref.precision, precision = _ref_precision === void 0 ? LAT_LONG_1MM_PRECISION : _ref_precision, readLonLatTuples = _ref.readLonLatTuples, precisionRounding = _ref.precisionRounding;
15088
- var precisionFunction = precision != null ? latLngPointPrecisionFunction(precision, precisionRounding) : mapIdentityFunction();
15089
- var wrapFunction = wrap !== false ? wrapLatLngPoint : validate !== false ? validLatLngPointFunction(defaultValue) : undefined;
15166
+ var precisionFunction = precision == null ? mapIdentityFunction() : latLngPointPrecisionFunction(precision, precisionRounding);
15167
+ var wrapFunction = wrap === false ? validate === false ? undefined : validLatLngPointFunction(defaultValue) : wrapLatLngPoint;
15090
15168
  var mapFn = chainMapSameFunctions([
15091
15169
  wrapFunction,
15092
15170
  precisionFunction
@@ -15116,13 +15194,13 @@ function latLngString(lat, lng) {
15116
15194
  lat: lat.lat,
15117
15195
  lng: (_lat_lng = lat.lng) !== null && _lat_lng !== void 0 ? _lat_lng : lat.lon
15118
15196
  };
15119
- } else if (lng != null) {
15197
+ } else if (lng == null) {
15198
+ throw new Error('Invalid lat/lng input "'.concat(lat, ",").concat(lng, '"'));
15199
+ } else {
15120
15200
  latLng = {
15121
15201
  lat: lat,
15122
15202
  lng: lng
15123
15203
  };
15124
- } else {
15125
- throw new Error('Invalid lat/lng input "'.concat(lat, ",").concat(lng, '"'));
15126
15204
  }
15127
15205
  return mapFn(latLng); // round to a given precision
15128
15206
  };
@@ -15225,7 +15303,7 @@ function latLngString(lat, lng) {
15225
15303
  min: wrapLngValue(sw.lng),
15226
15304
  max: wrapLngValue(ne.lng)
15227
15305
  }, 'none');
15228
- var precisionFunction = precision != null ? latLngPointPrecisionFunction(precision, 'round') : mapIdentityFunction();
15306
+ var precisionFunction = precision == null ? mapIdentityFunction() : latLngPointPrecisionFunction(precision, 'round');
15229
15307
  return function() {
15230
15308
  return precisionFunction({
15231
15309
  lat: randomLatFactory(),
@@ -16454,7 +16532,7 @@ function dateFromDateOrTimeMillisecondsNumber(input) {
16454
16532
  return input.getTime() < Date.now();
16455
16533
  }
16456
16534
  function addMilliseconds(input, ms) {
16457
- return input != null ? new Date(input.getTime() + (ms !== null && ms !== void 0 ? ms : 0)) : input;
16535
+ return input == null ? input : new Date(input.getTime() + (ms !== null && ms !== void 0 ? ms : 0));
16458
16536
  }
16459
16537
 
16460
16538
  /**
@@ -17133,10 +17211,10 @@ function _ts_generator$7(thisArg, body) {
17133
17211
  * ```
17134
17212
  */ function useValue(input, use, defaultValue) {
17135
17213
  var result;
17136
- if (input != null) {
17137
- result = use(input);
17138
- } else {
17214
+ if (input == null) {
17139
17215
  result = getValueFromGetter(defaultValue);
17216
+ } else {
17217
+ result = use(input);
17140
17218
  }
17141
17219
  return result;
17142
17220
  }
@@ -17209,10 +17287,10 @@ function _ts_generator$7(thisArg, body) {
17209
17287
  */ function useContextFunction(use, defaultValue) {
17210
17288
  return function(input) {
17211
17289
  var result;
17212
- if (input != null) {
17213
- result = use(input);
17214
- } else {
17290
+ if (input == null) {
17215
17291
  result = getValueFromGetter(defaultValue);
17292
+ } else {
17293
+ result = use(input);
17216
17294
  }
17217
17295
  return result;
17218
17296
  };
@@ -17236,22 +17314,22 @@ function _ts_generator$7(thisArg, body) {
17236
17314
  return _ts_generator$7(this, function(_state) {
17237
17315
  switch(_state.label){
17238
17316
  case 0:
17239
- if (!(input != null)) return [
17317
+ if (!(input == null)) return [
17240
17318
  3,
17241
- 2
17319
+ 1
17242
17320
  ];
17321
+ result = getValueFromGetter(defaultValue);
17243
17322
  return [
17244
- 4,
17245
- use(input)
17323
+ 3,
17324
+ 3
17246
17325
  ];
17247
17326
  case 1:
17248
- result = _state.sent();
17249
17327
  return [
17250
- 3,
17251
- 3
17328
+ 4,
17329
+ use(input)
17252
17330
  ];
17253
17331
  case 2:
17254
- result = getValueFromGetter(defaultValue);
17332
+ result = _state.sent();
17255
17333
  _state.label = 3;
17256
17334
  case 3:
17257
17335
  return [
@@ -17364,7 +17442,7 @@ function _ts_generator$7(thisArg, body) {
17364
17442
  var increaseBy = inputIncreaseBy !== null && inputIncreaseBy !== void 0 ? inputIncreaseBy : 1;
17365
17443
  var dencoder = inputDencoder !== null && inputDencoder !== void 0 ? inputDencoder : NUMBER_STRING_DENCODER_64;
17366
17444
  var dencoderNumberValue = numberStringDencoderDecodedNumberValueFunction(dencoder);
17367
- var startAtFromCurrentIndex = currentIndex != null ? dencoderNumberValue(currentIndex) + increaseBy : undefined;
17445
+ var startAtFromCurrentIndex = currentIndex == null ? undefined : dencoderNumberValue(currentIndex) + increaseBy;
17368
17446
  var startAt = inputStartAt == null ? startAtFromCurrentIndex !== null && startAtFromCurrentIndex !== void 0 ? startAtFromCurrentIndex : 0 : dencoderNumberValue(inputStartAt);
17369
17447
  var transform = inputTranformFunction !== null && inputTranformFunction !== void 0 ? inputTranformFunction : mapIdentityFunction();
17370
17448
  var numberFactory = incrementingNumberFactory({
@@ -17659,7 +17737,7 @@ function _type_of$6(obj) {
17659
17737
  return unixDateTimeSecondsNumberFromDate(new Date());
17660
17738
  }
17661
17739
  function unixDateTimeSecondsNumberFromDate(date) {
17662
- return date != null ? Math.ceil(date.getTime() / 1000) : date;
17740
+ return date == null ? date : Math.ceil(date.getTime() / 1000);
17663
17741
  }
17664
17742
  function dateFromDateOrTimeSecondsNumber(input) {
17665
17743
  var result;
@@ -17683,7 +17761,7 @@ function dateFromDateOrTimeSecondsNumber(input) {
17683
17761
  * @dbxUtilTags date, unix, seconds, timestamp, convert, parse
17684
17762
  * @dbxUtilRelated unix-date-time-seconds-number-from-date, date-from-date-or-time-seconds-number
17685
17763
  */ function unixDateTimeSecondsNumberToDate(dateTimeNumber) {
17686
- return dateTimeNumber != null ? new Date(dateTimeNumber * 1000) : dateTimeNumber;
17764
+ return dateTimeNumber == null ? dateTimeNumber : new Date(dateTimeNumber * 1000);
17687
17765
  }
17688
17766
 
17689
17767
  /**
@@ -17740,7 +17818,7 @@ function dateFromDateOrTimeSecondsNumber(input) {
17740
17818
  } else if (expiresAt != null) {
17741
17819
  expirationDate = expiresAt;
17742
17820
  } else if (expiresIn != null) {
17743
- var date = parsedExpiresFromDate !== null && parsedExpiresFromDate !== void 0 ? parsedExpiresFromDate : defaultExpiresFromDateToNow !== false ? now : null;
17821
+ var date = parsedExpiresFromDate !== null && parsedExpiresFromDate !== void 0 ? parsedExpiresFromDate : defaultExpiresFromDateToNow === false ? null : now;
17744
17822
  expirationDate = addMilliseconds(date, expiresIn);
17745
17823
  }
17746
17824
  return expirationDate;
@@ -18324,10 +18402,10 @@ function _ts_generator$6(thisArg, body) {
18324
18402
  2,
18325
18403
  new Promise(function(resolve, reject) {
18326
18404
  var callback = function callback(err) {
18327
- if (err != null) {
18328
- reject(err);
18329
- } else {
18405
+ if (err == null) {
18330
18406
  resolve();
18407
+ } else {
18408
+ reject(err);
18331
18409
  }
18332
18410
  };
18333
18411
  use(callback);
@@ -20698,7 +20776,7 @@ function _is_native_reflect_construct$2() {
20698
20776
  * @returns Projected end instant; null when no duration remains to project.
20699
20777
  */ function approximateTimerEndDate(timer) {
20700
20778
  var durationRemaining = timer.durationRemaining;
20701
- return durationRemaining != null ? new Date(Date.now() + durationRemaining) : null;
20779
+ return durationRemaining == null ? null : new Date(Date.now() + durationRemaining);
20702
20780
  }
20703
20781
 
20704
20782
  /**
@@ -22283,7 +22361,7 @@ function handlerFactory(readKey, options) {
22283
22361
  base: function base(value) {
22284
22362
  var _ref;
22285
22363
  var key = readKey(value);
22286
- var handler = (_ref = key != null ? map.get(key) : undefined) !== null && _ref !== void 0 ? _ref : catchAll;
22364
+ var handler = (_ref = key == null ? undefined : map.get(key)) !== null && _ref !== void 0 ? _ref : catchAll;
22287
22365
  var handled;
22288
22366
  if (handler) {
22289
22367
  handled = Promise.resolve(handler(value)).then(function(x) {
@@ -24340,9 +24418,9 @@ function invertMaybeBoolean(x) {
24340
24418
  return reduceFn(a, b);
24341
24419
  }));
24342
24420
  };
24343
- return emptyArrayValue != null ? function(array) {
24421
+ return emptyArrayValue == null ? rFn : function(array) {
24344
24422
  return array.length ? rFn(array) : emptyArrayValue;
24345
- } : rFn;
24423
+ };
24346
24424
  }
24347
24425
  /**
24348
24426
  * Creates a new BooleanFactory that generates random boolean values based on chance.
@@ -24566,6 +24644,40 @@ function _define_property$1(obj, key, value) {
24566
24644
  });
24567
24645
  return filterMaybeArrayValues(values);
24568
24646
  }
24647
+ /**
24648
+ * FNV-1a 32-bit offset basis.
24649
+ */ var FNV_1A_OFFSET_BASIS = 0x811c9dc5;
24650
+ /**
24651
+ * FNV-1a 32-bit prime.
24652
+ */ var FNV_1A_PRIME = 0x01000193;
24653
+ /**
24654
+ * Computes a stable, non-negative 32-bit integer hash for the input string using the FNV-1a algorithm.
24655
+ *
24656
+ * Deterministic and dependency-free (no `Math.random`): the same input always yields the same value,
24657
+ * making it suitable for deterministically mapping a string onto a fixed-size set (e.g. picking a
24658
+ * curated color for a name via `hashStringToNumber(value) % colors.length`).
24659
+ *
24660
+ * @param value - String to hash.
24661
+ * @returns A non-negative integer in the range `[0, 2^32)`.
24662
+ *
24663
+ * @dbxUtil
24664
+ * @dbxUtilCategory hash
24665
+ * @dbxUtilTags hash, string, number, deterministic, fnv, bucket, index
24666
+ * @dbxUtilRelated decode-hashed-values
24667
+ *
24668
+ * @example
24669
+ * ```ts
24670
+ * hashStringToNumber('Michelle B'); // stable integer, same every call
24671
+ * hashStringToNumber('Michelle B') % 12; // deterministic bucket index 0-11
24672
+ * ```
24673
+ */ function hashStringToNumber(value) {
24674
+ var hash = FNV_1A_OFFSET_BASIS;
24675
+ for(var i = 0; i < value.length; i += 1){
24676
+ hash ^= value.charCodeAt(i);
24677
+ hash = Math.imul(hash, FNV_1A_PRIME);
24678
+ }
24679
+ return hash >>> 0;
24680
+ }
24569
24681
 
24570
24682
  function asyncGeneratorStep$1(gen, resolve, reject, _next, _throw, key, arg) {
24571
24683
  try {
@@ -25476,4 +25588,4 @@ function classifyRemainingSegments(config) {
25476
25588
  ];
25477
25589
  }
25478
25590
 
25479
- export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ALL_TIME_UNITS, APPLICATION_FILE_EXTENSION_TO_MIME_TYPES_RECORD, APPLICATION_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, CANONICAL_KINDS, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, COMMA_STRING_SPLIT_JOIN, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_WEEK, DAYS_IN_YEAR, DEFAULT_AUTH_ROLE_CLAIMS_CLAIM_VALUE, DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_NUMBER_STRING_DENCODER_64_NEGATIVE_PREFIX, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_SLASH_PATH_PATH_MATCHER_NON_MATCHING_FILL_VALUE, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOCUMENT_FILE_EXTENSION_TO_MIME_TYPES_RECORD, DOCUMENT_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, DOCX_MIME_TYPE, DOLLAR_AMOUNT_PRECISION, DOLLAR_AMOUNT_STRING_REGEX, DataDoesNotExistError, DataIsExpiredError, Day, DestroyFunctionObject, E164PHONE_NUMBER_REGEX, E164PHONE_NUMBER_WITH_EXTENSION_REGEX, E164PHONE_NUMBER_WITH_OPTIONAL_EXTENSION_REGEX, ExploreTreeVisitNodeDecision, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FlattenTreeAddNodeDecision, FullStorageObject, GIF_MIME_TYPE, HAS_PORT_NUMBER_REGEX, HAS_WEBSITE_DOMAIN_NAME_REGEX, HEIF_MIME_TYPE, HEX_PATTERN, HOURS_IN_DAY, HOUR_OF_DAY_MAXMIMUM, HOUR_OF_DAY_MINIUMUM, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_MIME_TYPE, JPEG_MIME_TYPES, JPG_MIME_TYPE, JSON_MIME_TYPE, KeyValueTypleValueFilter, LAT_LNG_PATTERN, LAT_LNG_PATTERN_MAX_PRECISION, LAT_LONG_100KM_PRECISION, LAT_LONG_100M_PRECISION, LAT_LONG_10CM_PRECISION, LAT_LONG_10KM_PRECISION, LAT_LONG_10M_PRECISION, LAT_LONG_1CM_PRECISION, LAT_LONG_1KM_PRECISION, LAT_LONG_1MM_PRECISION, LAT_LONG_1M_PRECISION, LAT_LONG_GRAINS_OF_SAND_PRECISION, LEADING_SLASHES_REGEX, MAP_IDENTITY, MARKDOWN_MIME_TYPE, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MINUTE_OF_DAY_MAXMIMUM, MINUTE_OF_DAY_MINIUMUM, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MS_IN_WEEK, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DIGITS, OAUTH_OOB_REDIRECT_URI, PDF_ENCRYPT_MARKER, PDF_EOF_MARKER, PDF_HEADER, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PJPEG_MIME_TYPE, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_DAY, SECONDS_IN_HOUR, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, SPACE_JOINER, SPACE_STRING_SPLIT_JOIN, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, TIME_UNIT_LABEL_MAP, TIME_UNIT_SHORT_LABEL_MAP, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TXT_MIME_TYPE, TimeAM, TimerCancelledError, TypedServiceRegistryInstance, UNLOADED_PAGE, UNSET_INDEX_NUMBER, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEBP_MIME_TYPE, WEBSITE_TLD_DETECTION_REGEX, WEB_PROTOCOL_PREFIX_REGEX, XLSX_MIME_TYPE, XML_MIME_TYPE, YAML_MIME_TYPE, ZIP_CODE_STRING_REGEX, ZIP_FILE_MIME_TYPE, addHttpToUrl, addLatLngPoints, addMilliseconds, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, addToSplitStringTree, addTrailingSlash, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applicationFileExtensionForMimeType, applyBestFit, applySplitStringTreeWithMultipleValues, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, areEqualPOJOValuesUsingPojoFilter, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asMinuteOfDay, asNonEmptyArray, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, booleanKeyArrayUtility, boundNumber, boundNumberFunction, boundToRectangle, breadthFirstExploreTreeTraversalFactoryFunction, bufferHasValidPdfMarkings, build, buildCanonicalFilename, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, classifySpecFile, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareStrings, compareStringsNumeric, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertTimeDuration, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cssTokenVar, cssVariableVar, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, decodeRadix36Number, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, encodeRadix36Number, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, exploreTreeFunction, exponentialPromiseRateLimiter, extendLatLngBound, fileExtensionForMimeType, filterAndMapFunction, filterEmptyArrayValues, filterEmptyPojoValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterKeysOnPOJOFunction, filterMaybeArrayFunction, filterMaybeArrayValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterTuplesOnPOJOFunction, filterUndefinedValues, filterUniqueByIndex, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findBestSplitStringTreeChildMatch, findBestSplitStringTreeChildMatchPath, findBestSplitStringTreeMatch, findBestSplitStringTreeMatchPath, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenObject, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, generatePkceCodeChallenge, generatePkceCodeVerifier, getArrayNextIndex, getBaseLog, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasPortNumber, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hasWebsiteTopLevelDomain, hashSetForIndexed, hourToFractionalHour, hoursAndMinutesToString, hoursAndMinutesToTimeUnit, idBatchFactory, imageFileExtensionForMimeType, inMemoryAsyncKeyedValueCache, inMemoryAsyncValueCache, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexRefMap, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, invertMaybeBoolean, invertStringRecord, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualDate, isEqualToValueDecisionFunction, isEvenNumber, isExpired, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, isHourOfDay, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isKnownHttpWebsiteProtocol, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isMinuteOfDay, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotFalse, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPast, isPdfPasswordProtected, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStandardInternetAccessibleWebsiteUrl, isStringOrTrue, isThrottled, isTrueBooleanKeyArray, isUTCDateString, isUnderThreshold, isUniqueKeyedFunction, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterableToSet, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStrings, joinStringsInstance, joinStringsWithCommas, joinStringsWithSpaces, keepCharactersAfterFirstCharacterOccurence, keepCharactersAfterFirstCharacterOccurenceFunction, keepFromSetCopy, keepValuesFromArray, keepValuesFromSet, keyValueMapFactory, labeledValueMap, lastValue, latLngBound, latLngBoundCenterPoint, latLngBoundEastBound, latLngBoundFromInput, latLngBoundFullyWrapsMap, latLngBoundFunction, latLngBoundNorthBound, latLngBoundNorthEastPoint, latLngBoundNorthWestPoint, latLngBoundOverlapsLatLngBound, latLngBoundSouthBound, latLngBoundSouthEastPoint, latLngBoundSouthWestPoint, latLngBoundStrictlyWrapsMap, latLngBoundTuple, latLngBoundTupleFunction, latLngBoundWestBound, latLngBoundWrapsMap, latLngDataPointFunction, latLngPoint, latLngPointFromString, latLngPointFunction, latLngPointPrecisionFunction, latLngString, latLngStringFunction, latLngTuple, latLngTupleFunction, limitArray, lonLatTuple, lowercaseFirstLetter, mailToUrlString, makeBestFit, makeCopyModelFieldFunction, makeDateMonthForMonthOfYear, makeDefaultNonConcurrentTaskKeyFactory, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeTimer, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectKeysFunction, mapObjectKeysToLowercase, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, memoizeAsyncKeyedValueCache, memoizeAsyncValueCache, mergeArrays, mergeArraysIntoArray, mergeAsyncKeyedValueCaches, mergeAsyncValueCaches, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutes, millisecondsToMinutesAndSeconds, millisecondsToTimeUnit, mimeTypeForApplicationFileExtension, mimeTypeForDocumentFileExtension, mimeTypeForFileExtension, mimeTypeForImageFileExtension, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, minutesToHoursAndMinutes, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, monthOfYearFromUTCDate, multiKeyValueMapFactory, multiValueMapBuilder, neMostLatLngPoint, nearestDivisibleValues, noop, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, MAP_IDENTITY as passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, recommendBucketsForGroup, recommendSpecPath, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFirstMatchingSuffix, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeSuffix, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeValuesAtIndexesFromArrayCopy, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, resetPeriodPromiseRateLimiter, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, runNamedAsyncTasks, runNamedAsyncTasksFunction, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, screamingSnakeToCamelCase, searchStringFilterFunction, secondsToMinutesAndSeconds, selectiveFieldEncryptor, separateValues, separateValuesToSets, sequentialIncrementingNumberStringModelIdFactory, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, simplifyWhitespace, slashPathDetails, slashPathDirectoryTree, slashPathFactory, slashPathFolder, slashPathFolderFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathPathMatcher, slashPathPathMatcherConfig, slashPathStartTypeFactory, slashPathSubPathMatcher, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sliceStringFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitFront, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, splitStringTreeFactory, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringCharactersToIndexRecord, stringContains, stringFactoryFromFactory, stringFromDateFactory, stringFromTimeFactory, stringSplitJoinInstance, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, stripObject, stripObjectFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timeDurationToHoursAndMinutes, timeDurationToMilliseconds, timePeriodCounter, timeUnitToMilliseconds, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trueOrFalseString, tryConvertToE164PhoneNumber, tryWithPromiseFactoriesFunction, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, unixDateTimeSecondsNumberForNow, unixDateTimeSecondsNumberFromDate, unixDateTimeSecondsNumberFromDateOrTimeNumber, unixDateTimeSecondsNumberToDate, unixMillisecondsNumberToDate, updateMaybeValue, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlDetails, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };
25591
+ export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ALL_TIME_UNITS, APPLICATION_FILE_EXTENSION_TO_MIME_TYPES_RECORD, APPLICATION_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, CANONICAL_KINDS, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, COMMA_STRING_SPLIT_JOIN, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_WEEK, DAYS_IN_YEAR, DEFAULT_AUTH_ROLE_CLAIMS_CLAIM_VALUE, DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_NAME_TO_INITIALS_MAX_INITIALS, DEFAULT_NAME_TO_INITIALS_MIN_INITIALS, DEFAULT_NUMBER_STRING_DENCODER_64_NEGATIVE_PREFIX, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_SLASH_PATH_PATH_MATCHER_NON_MATCHING_FILL_VALUE, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOCUMENT_FILE_EXTENSION_TO_MIME_TYPES_RECORD, DOCUMENT_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, DOCX_MIME_TYPE, DOLLAR_AMOUNT_PRECISION, DOLLAR_AMOUNT_STRING_REGEX, DataDoesNotExistError, DataIsExpiredError, Day, DestroyFunctionObject, E164PHONE_NUMBER_REGEX, E164PHONE_NUMBER_WITH_EXTENSION_REGEX, E164PHONE_NUMBER_WITH_OPTIONAL_EXTENSION_REGEX, ExploreTreeVisitNodeDecision, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FlattenTreeAddNodeDecision, FullStorageObject, GIF_MIME_TYPE, HAS_PORT_NUMBER_REGEX, HAS_WEBSITE_DOMAIN_NAME_REGEX, HEIF_MIME_TYPE, HEX_PATTERN, HOURS_IN_DAY, HOUR_OF_DAY_MAXMIMUM, HOUR_OF_DAY_MINIUMUM, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_MIME_TYPE, JPEG_MIME_TYPES, JPG_MIME_TYPE, JSON_MIME_TYPE, KeyValueTypleValueFilter, LAT_LNG_PATTERN, LAT_LNG_PATTERN_MAX_PRECISION, LAT_LONG_100KM_PRECISION, LAT_LONG_100M_PRECISION, LAT_LONG_10CM_PRECISION, LAT_LONG_10KM_PRECISION, LAT_LONG_10M_PRECISION, LAT_LONG_1CM_PRECISION, LAT_LONG_1KM_PRECISION, LAT_LONG_1MM_PRECISION, LAT_LONG_1M_PRECISION, LAT_LONG_GRAINS_OF_SAND_PRECISION, LEADING_SLASHES_REGEX, MAP_IDENTITY, MARKDOWN_MIME_TYPE, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MINUTE_OF_DAY_MAXMIMUM, MINUTE_OF_DAY_MINIUMUM, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MS_IN_WEEK, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DIGITS, OAUTH_OOB_REDIRECT_URI, PDF_ENCRYPT_MARKER, PDF_EOF_MARKER, PDF_HEADER, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PJPEG_MIME_TYPE, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_DAY, SECONDS_IN_HOUR, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, SPACE_JOINER, SPACE_STRING_SPLIT_JOIN, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, TIME_UNIT_LABEL_MAP, TIME_UNIT_SHORT_LABEL_MAP, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TXT_MIME_TYPE, TimeAM, TimerCancelledError, TypedServiceRegistryInstance, UNLOADED_PAGE, UNSET_INDEX_NUMBER, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEBP_MIME_TYPE, WEBSITE_TLD_DETECTION_REGEX, WEB_PROTOCOL_PREFIX_REGEX, XLSX_MIME_TYPE, XML_MIME_TYPE, YAML_MIME_TYPE, ZIP_CODE_STRING_REGEX, ZIP_FILE_MIME_TYPE, addHttpToUrl, addLatLngPoints, addMilliseconds, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, addToSplitStringTree, addTrailingSlash, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applicationFileExtensionForMimeType, applyBestFit, applySplitStringTreeWithMultipleValues, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, areEqualPOJOValuesUsingPojoFilter, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asMinuteOfDay, asNonEmptyArray, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, booleanKeyArrayUtility, boundNumber, boundNumberFunction, boundToRectangle, breadthFirstExploreTreeTraversalFactoryFunction, bufferHasValidPdfMarkings, build, buildCanonicalFilename, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, classifySpecFile, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareStrings, compareStringsNumeric, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertTimeDuration, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cssTokenVar, cssVariableVar, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, decodeRadix36Number, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, encodeRadix36Number, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, exploreTreeFunction, exponentialPromiseRateLimiter, extendLatLngBound, fileExtensionForMimeType, filterAndMapFunction, filterEmptyArrayValues, filterEmptyPojoValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterKeysOnPOJOFunction, filterMaybeArrayFunction, filterMaybeArrayValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterTuplesOnPOJOFunction, filterUndefinedValues, filterUniqueByIndex, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findBestSplitStringTreeChildMatch, findBestSplitStringTreeChildMatchPath, findBestSplitStringTreeMatch, findBestSplitStringTreeMatchPath, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenObject, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, generatePkceCodeChallenge, generatePkceCodeVerifier, getArrayNextIndex, getBaseLog, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasPortNumber, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hasWebsiteTopLevelDomain, hashSetForIndexed, hashStringToNumber, hourToFractionalHour, hoursAndMinutesToString, hoursAndMinutesToTimeUnit, idBatchFactory, imageFileExtensionForMimeType, inMemoryAsyncKeyedValueCache, inMemoryAsyncValueCache, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexRefMap, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, invertMaybeBoolean, invertStringRecord, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualDate, isEqualToValueDecisionFunction, isEvenNumber, isExpired, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, isHourOfDay, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isKnownHttpWebsiteProtocol, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isMinuteOfDay, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotFalse, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPast, isPdfPasswordProtected, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStandardInternetAccessibleWebsiteUrl, isStringOrTrue, isThrottled, isTrueBooleanKeyArray, isUTCDateString, isUnderThreshold, isUniqueKeyedFunction, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterableToSet, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStrings, joinStringsInstance, joinStringsWithCommas, joinStringsWithSpaces, keepCharactersAfterFirstCharacterOccurence, keepCharactersAfterFirstCharacterOccurenceFunction, keepFromSetCopy, keepValuesFromArray, keepValuesFromSet, keyValueMapFactory, labeledValueMap, lastValue, latLngBound, latLngBoundCenterPoint, latLngBoundEastBound, latLngBoundFromInput, latLngBoundFullyWrapsMap, latLngBoundFunction, latLngBoundNorthBound, latLngBoundNorthEastPoint, latLngBoundNorthWestPoint, latLngBoundOverlapsLatLngBound, latLngBoundSouthBound, latLngBoundSouthEastPoint, latLngBoundSouthWestPoint, latLngBoundStrictlyWrapsMap, latLngBoundTuple, latLngBoundTupleFunction, latLngBoundWestBound, latLngBoundWrapsMap, latLngDataPointFunction, latLngPoint, latLngPointFromString, latLngPointFunction, latLngPointPrecisionFunction, latLngString, latLngStringFunction, latLngTuple, latLngTupleFunction, limitArray, lonLatTuple, lowercaseFirstLetter, mailToUrlString, makeBestFit, makeCopyModelFieldFunction, makeDateMonthForMonthOfYear, makeDefaultNonConcurrentTaskKeyFactory, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeTimer, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectKeysFunction, mapObjectKeysToLowercase, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, memoizeAsyncKeyedValueCache, memoizeAsyncValueCache, mergeArrays, mergeArraysIntoArray, mergeAsyncKeyedValueCaches, mergeAsyncValueCaches, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutes, millisecondsToMinutesAndSeconds, millisecondsToTimeUnit, mimeTypeForApplicationFileExtension, mimeTypeForDocumentFileExtension, mimeTypeForFileExtension, mimeTypeForImageFileExtension, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, minutesToHoursAndMinutes, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, monthOfYearFromUTCDate, multiKeyValueMapFactory, multiValueMapBuilder, nameToInitials, nameToInitialsFactory, neMostLatLngPoint, nearestDivisibleValues, noop, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, MAP_IDENTITY as passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, recommendBucketsForGroup, recommendSpecPath, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFirstMatchingSuffix, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeSuffix, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeValuesAtIndexesFromArrayCopy, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, resetPeriodPromiseRateLimiter, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, runNamedAsyncTasks, runNamedAsyncTasksFunction, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, screamingSnakeToCamelCase, searchStringFilterFunction, secondsToMinutesAndSeconds, selectiveFieldEncryptor, separateValues, separateValuesToSets, sequentialIncrementingNumberStringModelIdFactory, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, simplifyWhitespace, slashPathDetails, slashPathDirectoryTree, slashPathFactory, slashPathFolder, slashPathFolderFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathPathMatcher, slashPathPathMatcherConfig, slashPathStartTypeFactory, slashPathSubPathMatcher, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sliceStringFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitFront, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, splitStringTreeFactory, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringCharactersToIndexRecord, stringContains, stringFactoryFromFactory, stringFromDateFactory, stringFromTimeFactory, stringSplitJoinInstance, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, stripObject, stripObjectFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timeDurationToHoursAndMinutes, timeDurationToMilliseconds, timePeriodCounter, timeUnitToMilliseconds, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trueOrFalseString, tryConvertToE164PhoneNumber, tryWithPromiseFactoriesFunction, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, unixDateTimeSecondsNumberForNow, unixDateTimeSecondsNumberFromDate, unixDateTimeSecondsNumberFromDateOrTimeNumber, unixDateTimeSecondsNumberToDate, unixMillisecondsNumberToDate, updateMaybeValue, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlDetails, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };