@dereekb/util 13.10.0 → 13.10.2

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
@@ -460,7 +460,7 @@ function _unsupported_iterable_to_array$A(o, minLen) {
460
460
  * @param input - single value or array to retrieve from
461
461
  * @returns the last element of the array, or the input value itself
462
462
  */ function lastValue(input) {
463
- return Array.isArray(input) ? input[input.length - 1] : input;
463
+ return Array.isArray(input) ? input.at(-1) : input;
464
464
  }
465
465
  /**
466
466
  * Returns a tuple with the first and last value of the input.
@@ -495,9 +495,7 @@ function _unsupported_iterable_to_array$A(o, minLen) {
495
495
  for(var _len = arguments.length, arrays = new Array(_len), _key = 0; _key < _len; _key++){
496
496
  arrays[_key] = arguments[_key];
497
497
  }
498
- return flattenArray(arrays.filter(function(x) {
499
- return Boolean(x);
500
- }));
498
+ return flattenArray(arrays.filter(Boolean));
501
499
  }
502
500
  /**
503
501
  * Flattens a two-dimensional array into a single-dimensional array. Any null/undefined entries in the outer dimension are filtered out.
@@ -505,9 +503,7 @@ function _unsupported_iterable_to_array$A(o, minLen) {
505
503
  * @param array - two-dimensional array to flatten, may contain nullish entries
506
504
  * @returns a single-dimensional array with all elements from the non-nullish inner arrays
507
505
  */ function flattenArray(array) {
508
- var filteredValues = array.filter(function(x) {
509
- return Boolean(x);
510
- });
506
+ var filteredValues = array.filter(Boolean);
511
507
  return filteredValues.flat();
512
508
  }
513
509
  /**
@@ -1337,7 +1333,9 @@ function _unsupported_iterable_to_array$y(o, minLen) {
1337
1333
  */ function arrayDecisionFunction(decision, mode) {
1338
1334
  var findFn = mode === 'all' ? invertBooleanReturnFunction(decision) : decision;
1339
1335
  return invertBooleanReturnFunction(function(values) {
1340
- return values.some(findFn);
1336
+ return values.some(function(v, i, arr) {
1337
+ return findFn(v, i, arr);
1338
+ });
1341
1339
  }, mode === 'all');
1342
1340
  }
1343
1341
  /**
@@ -1581,7 +1579,9 @@ function _type_of$l(obj) {
1581
1579
  return function(values) {
1582
1580
  var result;
1583
1581
  if (values != null) {
1584
- result = values.filter(filterFn);
1582
+ result = values.filter(function(v, i, arr) {
1583
+ return filterFn(v, i, arr);
1584
+ });
1585
1585
  } else {
1586
1586
  result = [];
1587
1587
  }
@@ -2354,7 +2354,7 @@ function _unsupported_iterable_to_array$w(o, minLen) {
2354
2354
  /**
2355
2355
  * Utility for working with boolean string key arrays.
2356
2356
  */ var BooleanStringKeyArrayUtility = booleanKeyArrayUtility(function(x) {
2357
- return x ? x : undefined;
2357
+ return x || undefined;
2358
2358
  });
2359
2359
 
2360
2360
  function _array_like_to_array$v(arr, len) {
@@ -3948,7 +3948,7 @@ function _type_of$h(obj) {
3948
3948
  return fn;
3949
3949
  }
3950
3950
 
3951
- var DOLLAR_AMOUNT_STRING_REGEX = /^\$?([0-9]+)\.?([0-9][0-9])$/;
3951
+ var DOLLAR_AMOUNT_STRING_REGEX = /^\$?(\d+)\.?(\d\d)$/;
3952
3952
  /**
3953
3953
  * Dollar amounts are to two decimal places.
3954
3954
  */ var DOLLAR_AMOUNT_PRECISION = 2;
@@ -4116,7 +4116,7 @@ var DOLLAR_AMOUNT_STRING_REGEX = /^\$?([0-9]+)\.?([0-9][0-9])$/;
4116
4116
  * decodeRadix36Number('2s'); // 100
4117
4117
  * ```
4118
4118
  */ function decodeRadix36Number(encoded) {
4119
- return parseInt(encoded, 36);
4119
+ return Number.parseInt(encoded, 36);
4120
4120
  }
4121
4121
  /**
4122
4122
  * Pattern that matches strings containing only hexadecimal characters (0-9, a-f, A-F).
@@ -4229,7 +4229,9 @@ var DOLLAR_AMOUNT_STRING_REGEX = /^\$?([0-9]+)\.?([0-9][0-9])$/;
4229
4229
  }
4230
4230
  function reduceNumbersFn(reduceFn, emptyArrayValue) {
4231
4231
  var rFn = function rFn(array) {
4232
- return array.reduce(reduceFn);
4232
+ return array.reduce(function(a, b) {
4233
+ return reduceFn(a, b);
4234
+ });
4233
4235
  };
4234
4236
  return function(array) {
4235
4237
  return array.length ? rFn(array) : emptyArrayValue;
@@ -5091,7 +5093,9 @@ function findNext(array, find) {
5091
5093
  var wrapAround = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : false, steps = arguments.length > 3 ? arguments[3] : void 0;
5092
5094
  var result;
5093
5095
  if (array) {
5094
- var index = array.findIndex(find);
5096
+ var index = array.findIndex(function(v, i, arr) {
5097
+ return find(v, i, arr);
5098
+ });
5095
5099
  var nextIndex = getArrayNextIndex(array, index, wrapAround, steps);
5096
5100
  if (nextIndex != null) {
5097
5101
  result = array[nextIndex];
@@ -5501,7 +5505,10 @@ function caseInsensitiveString(input) {
5501
5505
  * @returns the prefixed string, or undefined if the input is null/undefined
5502
5506
  */ function addPlusPrefixToNumber(value) {
5503
5507
  var prefix = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : '+';
5504
- return value != null ? value > 0 ? "".concat(prefix).concat(value) : "".concat(value) : undefined;
5508
+ if (value == null) {
5509
+ return undefined;
5510
+ }
5511
+ return value > 0 ? "".concat(prefix).concat(value) : "".concat(value);
5505
5512
  }
5506
5513
  /**
5507
5514
  * Capitalizes the first letter of the input string.
@@ -5587,7 +5594,7 @@ function caseInsensitiveString(input) {
5587
5594
  * @param input - string to flatten
5588
5595
  * @returns the string with collapsed whitespace
5589
5596
  */ function flattenWhitespace(input) {
5590
- return input.replace(/[^\S\r\n]+/g, ' ').trim();
5597
+ return input.replaceAll(/[^\S\r\n]+/g, ' ').trim();
5591
5598
  }
5592
5599
  /**
5593
5600
  * Reduces multiple consecutive newlines to a single newline and collapses multiple whitespace characters to a single space.
@@ -6002,7 +6009,7 @@ function _get_prototype_of$4(o) {
6002
6009
  };
6003
6010
  return _get_prototype_of$4(o);
6004
6011
  }
6005
- function _inherits$4(subClass, superClass) {
6012
+ function _inherits$5(subClass, superClass) {
6006
6013
  if (typeof superClass !== "function" && superClass !== null) {
6007
6014
  throw new TypeError("Super expression must either be null or a function");
6008
6015
  }
@@ -6013,7 +6020,7 @@ function _inherits$4(subClass, superClass) {
6013
6020
  configurable: true
6014
6021
  }
6015
6022
  });
6016
- if (superClass) _set_prototype_of$4(subClass, superClass);
6023
+ if (superClass) _set_prototype_of$5(subClass, superClass);
6017
6024
  }
6018
6025
  function _possible_constructor_return$4(self, call) {
6019
6026
  if (call && (_type_of$g(call) === "object" || typeof call === "function")) {
@@ -6021,12 +6028,12 @@ function _possible_constructor_return$4(self, call) {
6021
6028
  }
6022
6029
  return _assert_this_initialized$4(self);
6023
6030
  }
6024
- function _set_prototype_of$4(o, p) {
6025
- _set_prototype_of$4 = Object.setPrototypeOf || function setPrototypeOf(o, p) {
6031
+ function _set_prototype_of$5(o, p) {
6032
+ _set_prototype_of$5 = Object.setPrototypeOf || function setPrototypeOf(o, p) {
6026
6033
  o.__proto__ = p;
6027
6034
  return o;
6028
6035
  };
6029
- return _set_prototype_of$4(o, p);
6036
+ return _set_prototype_of$5(o, p);
6030
6037
  }
6031
6038
  function _type_of$g(obj) {
6032
6039
  "@swc/helpers - typeof";
@@ -6047,7 +6054,7 @@ function _is_native_reflect_construct$4() {
6047
6054
  * Error thrown when an assertion fails.
6048
6055
  * Extends BaseError and implements ReadableError interface.
6049
6056
  */ var AssertionError = /*#__PURE__*/ function(BaseError) {
6050
- _inherits$4(AssertionError, BaseError);
6057
+ _inherits$5(AssertionError, BaseError);
6051
6058
  function AssertionError(error, message) {
6052
6059
  _class_call_check$9(this, AssertionError);
6053
6060
  var _this;
@@ -6436,7 +6443,9 @@ function _unsupported_iterable_to_array$r(o, minLen) {
6436
6443
  */ function forEachKeyValue(obj, param) {
6437
6444
  var forEach = param.forEach, filter = param.filter;
6438
6445
  var keyValues = filterKeyValueTuples(obj, filter);
6439
- keyValues.forEach(forEach);
6446
+ keyValues.forEach(function(kv, i) {
6447
+ return forEach(kv, i);
6448
+ });
6440
6449
  }
6441
6450
  /**
6442
6451
  * Extracts key/value tuples from an object, optionally filtering them.
@@ -6472,7 +6481,9 @@ function _unsupported_iterable_to_array$r(o, minLen) {
6472
6481
  if (filter != null) {
6473
6482
  var filterFn = filterKeyValueTupleFunction(filter);
6474
6483
  result = function result(obj) {
6475
- return allKeyValueTuples(obj).filter(filterFn);
6484
+ return allKeyValueTuples(obj).filter(function(kv, i) {
6485
+ return filterFn(kv, i);
6486
+ });
6476
6487
  };
6477
6488
  } else {
6478
6489
  result = allKeyValueTuples;
@@ -6760,6 +6771,27 @@ function _unsupported_iterable_to_array$q(o, minLen) {
6760
6771
  if (n === "Map" || n === "Set") return Array.from(n);
6761
6772
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$q(o, minLen);
6762
6773
  }
6774
+ /**
6775
+ *
6776
+ * @param input
6777
+ */ function stripObjectFunction(filter) {
6778
+ var copy = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : true;
6779
+ var filterFn = filterFromPOJOFunction({
6780
+ filter: filter,
6781
+ copy: copy
6782
+ });
6783
+ return function(input, copyOverride) {
6784
+ var result;
6785
+ if (input != null) {
6786
+ var filtered = filterFn(input, copyOverride);
6787
+ result = objectHasNoKeys(filtered) ? undefined : filtered;
6788
+ }
6789
+ return result;
6790
+ };
6791
+ }
6792
+ function stripObject(input, copy) {
6793
+ return stripObjectFunction(KeyValueTypleValueFilter.UNDEFINED, copy)(input);
6794
+ }
6763
6795
  // MARK: Object Merging/Overriding
6764
6796
  /**
6765
6797
  * Assigns all non-filtered values from one or more source objects into the target object.
@@ -7375,7 +7407,9 @@ function _unsupported_iterable_to_array$q(o, minLen) {
7375
7407
  */ function filterTuplesOnPOJOFunction(filterTupleOnObject) {
7376
7408
  return function(input) {
7377
7409
  var result = {};
7378
- Object.entries(input).filter(filterTupleOnObject).forEach(function(tuple) {
7410
+ Object.entries(input).filter(function(tuple, i, arr) {
7411
+ return filterTupleOnObject(tuple, i, arr);
7412
+ }).forEach(function(tuple) {
7379
7413
  result[tuple[0]] = tuple[1];
7380
7414
  });
7381
7415
  return result;
@@ -7974,6 +8008,7 @@ function _array_without_holes$d(arr) {
7974
8008
  if (Array.isArray(arr)) return _array_like_to_array$n(arr);
7975
8009
  }
7976
8010
  function _instanceof$3(left, right) {
8011
+ "@swc/helpers - instanceof";
7977
8012
  if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
7978
8013
  return !!right[Symbol.hasInstance](left);
7979
8014
  } else {
@@ -8372,7 +8407,7 @@ function _unsupported_iterable_to_array$n(o, minLen) {
8372
8407
  * ```
8373
8408
  */ function tryConvertToE164PhoneNumber(input) {
8374
8409
  var defaultCountryCode = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : '1';
8375
- var stripped = input.replace(PHONE_NUMBER_FORMATTING_CHARACTERS_REGEX, '');
8410
+ var stripped = input.replaceAll(PHONE_NUMBER_FORMATTING_CHARACTERS_REGEX, '');
8376
8411
  var result;
8377
8412
  if (isE164PhoneNumber(stripped, false)) {
8378
8413
  result = stripped;
@@ -8555,7 +8590,7 @@ var DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS = [
8555
8590
  if (input.length === 0) {
8556
8591
  type = 'invalid';
8557
8592
  } else {
8558
- var lastValue = input[input.length - 1];
8593
+ var lastValue = input.at(-1);
8559
8594
  if (lastValue === SLASH_PATH_SEPARATOR) {
8560
8595
  type = 'folder';
8561
8596
  } else {
@@ -8621,9 +8656,7 @@ var DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS = [
8621
8656
  * @param slashPath - The path to split.
8622
8657
  * @returns Array of non-empty path segments.
8623
8658
  */ function slashPathParts(slashPath) {
8624
- return slashPath.split(SLASH_PATH_SEPARATOR).filter(function(x) {
8625
- return Boolean(x);
8626
- });
8659
+ return slashPath.split(SLASH_PATH_SEPARATOR).filter(Boolean);
8627
8660
  }
8628
8661
  /**
8629
8662
  * Creates a function that enforces the specified start type on a slash path.
@@ -8739,7 +8772,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
8739
8772
  * @param input - The slash path to fix.
8740
8773
  * @returns The path with double slashes collapsed.
8741
8774
  */ function fixMultiSlashesInSlashPath(input) {
8742
- return input.replace(ALL_DOUBLE_SLASHES_REGEX, SLASH_PATH_SEPARATOR);
8775
+ return input.replaceAll(ALL_DOUBLE_SLASHES_REGEX, SLASH_PATH_SEPARATOR);
8743
8776
  }
8744
8777
  /**
8745
8778
  * Replaces consecutive double slashes with single slashes. Alias for {@link fixMultiSlashesInSlashPath}.
@@ -8747,7 +8780,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
8747
8780
  * @param input - The slash path to fix.
8748
8781
  * @returns The path with double slashes collapsed.
8749
8782
  */ function replaceMultipleFilePathsInSlashPath(input) {
8750
- return input.replace(ALL_DOUBLE_SLASHES_REGEX, SLASH_PATH_SEPARATOR);
8783
+ return input.replaceAll(ALL_DOUBLE_SLASHES_REGEX, SLASH_PATH_SEPARATOR);
8751
8784
  }
8752
8785
  /**
8753
8786
  * Removes all trailing slashes from a slash path.
@@ -8791,7 +8824,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
8791
8824
  */ function replaceInvalidFilePathTypeSeparatorsInSlashPathFunction() {
8792
8825
  var replaceWith = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT;
8793
8826
  return function(input) {
8794
- var endsOnFileTypeSeparator = input[input.length - 1] === SLASH_PATH_FILE_TYPE_SEPARATOR;
8827
+ var endsOnFileTypeSeparator = input.at(-1) === SLASH_PATH_FILE_TYPE_SEPARATOR;
8795
8828
  var inputToEvaluate = endsOnFileTypeSeparator ? removeTrailingFileTypeSeparators(input) : input;
8796
8829
  var _firstAndLastCharacterOccurrence = firstAndLastCharacterOccurrence(inputToEvaluate, SLASH_PATH_FILE_TYPE_SEPARATOR); _firstAndLastCharacterOccurrence.first; var last = _firstAndLastCharacterOccurrence.last, occurences = _firstAndLastCharacterOccurrence.occurences;
8797
8830
  var fixedPath;
@@ -8814,7 +8847,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
8814
8847
  default:
8815
8848
  {
8816
8849
  var _splitStringAtIndex = _sliced_to_array$e(splitStringAtIndex(inputToEvaluate, last, true), 2), head = _splitStringAtIndex[0], tail = _splitStringAtIndex[1];
8817
- var headWithReplacedSeparators = head.replace(ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, replaceWith);
8850
+ var headWithReplacedSeparators = head.replaceAll(ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, replaceWith);
8818
8851
  fixedPath = headWithReplacedSeparators + tail;
8819
8852
  break;
8820
8853
  }
@@ -8946,7 +8979,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
8946
8979
  if (pathStartsWithSlash) {
8947
8980
  folderPath = SLASH_PATH_SEPARATOR + folderPath;
8948
8981
  }
8949
- fileFolder = folderPathParts[folderPathParts.length - 1];
8982
+ fileFolder = folderPathParts.at(-1);
8950
8983
  } else {
8951
8984
  folderPath = path;
8952
8985
  fileFolder = undefined;
@@ -9206,8 +9239,10 @@ function _unsupported_iterable_to_array$l(o, minLen) {
9206
9239
  return input === 'http' || input === 'https';
9207
9240
  }
9208
9241
  /**
9209
- * Simple website domain regex that looks for a period in the string between the domain and the tld
9210
- */ var HAS_WEBSITE_DOMAIN_NAME_REGEX = /(.+)\.(.+)/;
9242
+ * Simple website domain regex that looks for a period in the string between the domain and the tld.
9243
+ *
9244
+ * Anchored character-class form prevents catastrophic backtracking on inputs without a period.
9245
+ */ var HAS_WEBSITE_DOMAIN_NAME_REGEX = /^[^.]+\.[^.]/;
9211
9246
  /**
9212
9247
  * Returns true if the input probably contains a website domain (has at least one period separating parts).
9213
9248
  *
@@ -9221,7 +9256,8 @@ function _unsupported_iterable_to_array$l(o, minLen) {
9221
9256
  * @param input - The string to check for a domain.
9222
9257
  * @returns Whether the input appears to contain a website domain.
9223
9258
  */ function hasWebsiteDomain(input) {
9224
- return HAS_WEBSITE_DOMAIN_NAME_REGEX.test(input);
9259
+ var dotIndex = input.indexOf('.');
9260
+ return dotIndex > 0 && dotIndex < input.length - 1;
9225
9261
  }
9226
9262
  /**
9227
9263
  * This Regex is really only reliable for detecting that the TLD exists, but due to the nature of tld's
@@ -9613,7 +9649,7 @@ function _unsupported_iterable_to_array$l(o, minLen) {
9613
9649
  * @returns The extracted domain
9614
9650
  */ function readEmailDomainFromUrlOrEmailAddress(urlLikeInput) {
9615
9651
  var emailSplit = urlLikeInput.split('@');
9616
- var url = emailSplit[emailSplit.length - 1];
9652
+ var url = emailSplit.at(-1);
9617
9653
  var domain;
9618
9654
  if (emailSplit.length > 1) {
9619
9655
  domain = url;
@@ -9804,7 +9840,7 @@ function _get_prototype_of$3(o) {
9804
9840
  };
9805
9841
  return _get_prototype_of$3(o);
9806
9842
  }
9807
- function _inherits$3(subClass, superClass) {
9843
+ function _inherits$4(subClass, superClass) {
9808
9844
  if (typeof superClass !== "function" && superClass !== null) {
9809
9845
  throw new TypeError("Super expression must either be null or a function");
9810
9846
  }
@@ -9815,7 +9851,7 @@ function _inherits$3(subClass, superClass) {
9815
9851
  configurable: true
9816
9852
  }
9817
9853
  });
9818
- if (superClass) _set_prototype_of$3(subClass, superClass);
9854
+ if (superClass) _set_prototype_of$4(subClass, superClass);
9819
9855
  }
9820
9856
  function _object_spread$b(target) {
9821
9857
  for(var i = 1; i < arguments.length; i++){
@@ -9857,12 +9893,12 @@ function _possible_constructor_return$3(self, call) {
9857
9893
  }
9858
9894
  return _assert_this_initialized$3(self);
9859
9895
  }
9860
- function _set_prototype_of$3(o, p) {
9861
- _set_prototype_of$3 = Object.setPrototypeOf || function setPrototypeOf(o, p) {
9896
+ function _set_prototype_of$4(o, p) {
9897
+ _set_prototype_of$4 = Object.setPrototypeOf || function setPrototypeOf(o, p) {
9862
9898
  o.__proto__ = p;
9863
9899
  return o;
9864
9900
  };
9865
- return _set_prototype_of$3(o, p);
9901
+ return _set_prototype_of$4(o, p);
9866
9902
  }
9867
9903
  function _type_of$b(obj) {
9868
9904
  "@swc/helpers - typeof";
@@ -9922,7 +9958,7 @@ function partialServerError(messageOrError) {
9922
9958
  /**
9923
9959
  * Server error response with a 401 Unauthorized status.
9924
9960
  */ var UnauthorizedServerErrorResponse = /*#__PURE__*/ function(ServerErrorResponse) {
9925
- _inherits$3(UnauthorizedServerErrorResponse, ServerErrorResponse);
9961
+ _inherits$4(UnauthorizedServerErrorResponse, ServerErrorResponse);
9926
9962
  function UnauthorizedServerErrorResponse(param) {
9927
9963
  var code = param.code, data = param.data, message = param.message;
9928
9964
  _class_call_check$7(this, UnauthorizedServerErrorResponse);
@@ -9953,6 +9989,7 @@ function _define_property$e(obj, key, value) {
9953
9989
  return obj;
9954
9990
  }
9955
9991
  function _instanceof$2(left, right) {
9992
+ "@swc/helpers - instanceof";
9956
9993
  if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
9957
9994
  return !!right[Symbol.hasInstance](left);
9958
9995
  } else {
@@ -10159,12 +10196,6 @@ function _unsupported_iterable_to_array$j(o, minLen) {
10159
10196
  };
10160
10197
  }
10161
10198
 
10162
- /**
10163
- * Identity function that returns the input value unchanged.
10164
- *
10165
- * Alias of MAP_IDENTITY, so `isMapIdentityFunction()` will return true for this function.
10166
- */ var passThrough = MAP_IDENTITY;
10167
-
10168
10199
  function _array_like_to_array$i(arr, len) {
10169
10200
  if (len == null || len > arr.length) len = arr.length;
10170
10201
  for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
@@ -11080,10 +11111,7 @@ function _unsupported_iterable_to_array$g(o, minLen) {
11080
11111
  var address;
11081
11112
  var lineBreakLine = addLinebreaks ? '\n' : '';
11082
11113
  var parts = [];
11083
- parts.push(name);
11084
- parts.push(phone);
11085
- parts.push(line1);
11086
- parts.push(line2);
11114
+ parts.push(name, phone, line1, line2);
11087
11115
  if (city || state || zip) {
11088
11116
  if (city && (state || zip)) {
11089
11117
  parts.push("".concat(city, ", ").concat(state, " ").concat(zip));
@@ -11284,6 +11312,19 @@ function _define_property$c(obj, key, value) {
11284
11312
  }
11285
11313
  return obj;
11286
11314
  }
11315
+ function _inherits$3(subClass, superClass) {
11316
+ if (typeof superClass !== "function" && superClass !== null) {
11317
+ throw new TypeError("Super expression must either be null or a function");
11318
+ }
11319
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
11320
+ constructor: {
11321
+ value: subClass,
11322
+ writable: true,
11323
+ configurable: true
11324
+ }
11325
+ });
11326
+ if (superClass) _set_prototype_of$3(subClass, superClass);
11327
+ }
11287
11328
  function _iterable_to_array_limit$b(arr, i) {
11288
11329
  var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
11289
11330
  if (_i == null) return;
@@ -11345,6 +11386,13 @@ function _object_spread_props$4(target, source) {
11345
11386
  }
11346
11387
  return target;
11347
11388
  }
11389
+ function _set_prototype_of$3(o, p) {
11390
+ _set_prototype_of$3 = Object.setPrototypeOf || function setPrototypeOf(o, p) {
11391
+ o.__proto__ = p;
11392
+ return o;
11393
+ };
11394
+ return _set_prototype_of$3(o, p);
11395
+ }
11348
11396
  function _sliced_to_array$b(arr, i) {
11349
11397
  return _array_with_holes$b(arr) || _iterable_to_array_limit$b(arr, i) || _unsupported_iterable_to_array$f(arr, i) || _non_iterable_rest$b();
11350
11398
  }
@@ -11360,6 +11408,80 @@ function _unsupported_iterable_to_array$f(o, minLen) {
11360
11408
  if (n === "Map" || n === "Set") return Array.from(n);
11361
11409
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$f(o, minLen);
11362
11410
  }
11411
+ function _wrap_reg_exp(re, groups, source) {
11412
+ _wrap_reg_exp = function(re, groups, source) {
11413
+ return new WrappedRegExp(re, undefined, groups, source);
11414
+ };
11415
+ var _super = RegExp.prototype;
11416
+ var _groups = new WeakMap();
11417
+ var _sources = new WeakMap();
11418
+ var _native_source = Object.getOwnPropertyDescriptor(_super, "source").get;
11419
+ function WrappedRegExp(re, flags, groups, source) {
11420
+ var _re = new RegExp(re, flags);
11421
+ _groups.set(_re, groups || _groups.get(re));
11422
+ _sources.set(_re, source !== undefined ? source : _sources.get(re));
11423
+ return _set_prototype_of$3(_re, WrappedRegExp.prototype);
11424
+ }
11425
+ _inherits$3(WrappedRegExp, RegExp);
11426
+ Object.defineProperty(WrappedRegExp.prototype, "source", {
11427
+ configurable: true,
11428
+ get: function() {
11429
+ var source = _sources.get(this);
11430
+ if (source !== undefined) {
11431
+ try {
11432
+ new RegExp(source, this.flags);
11433
+ return source;
11434
+ } catch (_) {}
11435
+ }
11436
+ return _native_source.call(this);
11437
+ }
11438
+ });
11439
+ WrappedRegExp.prototype.exec = function(str) {
11440
+ var result = _super.exec.call(this, str);
11441
+ if (result) {
11442
+ result.groups = buildGroups(result, this);
11443
+ var indices = result.indices;
11444
+ if (indices) indices.groups = buildGroups(indices, this);
11445
+ }
11446
+ return result;
11447
+ };
11448
+ WrappedRegExp.prototype[Symbol.replace] = function(str, substitution) {
11449
+ if (typeof substitution === "string") {
11450
+ var groups = _groups.get(this);
11451
+ return _super[Symbol.replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function(_, name) {
11452
+ var group = groups ? groups[name] : undefined;
11453
+ if (group === undefined) return "";
11454
+ return "$" + (Array.isArray(group) ? group.join("$") : group);
11455
+ }));
11456
+ }
11457
+ if (typeof substitution === "function") {
11458
+ var _this = this;
11459
+ return _super[Symbol.replace].call(this, str, function() {
11460
+ var args = arguments;
11461
+ if (typeof args[args.length - 1] !== "object") {
11462
+ args = [].slice.call(args);
11463
+ args.push(buildGroups(args, _this));
11464
+ }
11465
+ return substitution.apply(this, args);
11466
+ });
11467
+ }
11468
+ return _super[Symbol.replace].call(this, str, substitution);
11469
+ };
11470
+ function buildGroups(result, re) {
11471
+ var g = _groups.get(re);
11472
+ return Object.keys(g).reduce(function(groups, name) {
11473
+ var i = g[name];
11474
+ if (typeof i === "number") groups[name] = result[i];
11475
+ else {
11476
+ var k = 0;
11477
+ while(result[i[k]] === undefined && k + 1 < i.length)k++;
11478
+ groups[name] = result[i[k]];
11479
+ }
11480
+ return groups;
11481
+ }, Object.create(null));
11482
+ }
11483
+ return _wrap_reg_exp.apply(this, arguments);
11484
+ }
11363
11485
  /**
11364
11486
  * Minimum valid latitude value (-90 degrees).
11365
11487
  */ var MIN_LATITUDE_VALUE = -90;
@@ -11603,7 +11725,10 @@ function latLngString(lat, lng) {
11603
11725
  * https://stackoverflow.com/questions/3518504/regular-expression-for-matching-latitude-longitude-coordinates
11604
11726
  *
11605
11727
  * Has a max precision of 15 because Google Maps returns a 15 decimal places when copying a position.
11606
- */ var LAT_LNG_PATTERN = RegExp("(?<lat>^[-+]?(?:[1-8]?\\d(?:\\.\\d{0,15})?|90(?:\\.0{0,15})?))\\s*,\\s*(?<lng>[-+]?(?:180(?:\\.0{0,15})?|(?:1[0-7]\\d|[1-9]?\\d)(?:\\.\\d{0,15})?))$");
11728
+ */ var LAT_LNG_PATTERN = _wrap_reg_exp(/(^[-+]?(?:[1-8]?\d(?:\.\d{0,15})?|90(?:\.0{0,15})?))\s*,\s*([-+]?(?:180(?:\.0{0,15})?|(?:1[0-7]\d|[1-9]?\d)(?:\.\d{0,15})?))$/, {
11729
+ lat: 1,
11730
+ lng: 2
11731
+ }, "(?<lat>^[-+]?(?:[1-8]?\\d(?:\\.\\d{0,15})?|90(?:\\.0{0,15})?))\\s*,\\s*(?<lng>[-+]?(?:180(?:\\.0{0,15})?|(?:1[0-7]\\d|[1-9]?\\d)(?:\\.\\d{0,15})?))$");
11607
11732
  /**
11608
11733
  * Checks whether the input string matches the expected lat/lng pattern (e.g., `"30.5,-96.3"`).
11609
11734
  *
@@ -12463,6 +12588,7 @@ function _array_with_holes$9(arr) {
12463
12588
  if (Array.isArray(arr)) return arr;
12464
12589
  }
12465
12590
  function _instanceof$1(left, right) {
12591
+ "@swc/helpers - instanceof";
12466
12592
  if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
12467
12593
  return !!right[Symbol.hasInstance](left);
12468
12594
  } else {
@@ -12530,7 +12656,7 @@ function _unsupported_iterable_to_array$d(o, minLen) {
12530
12656
  * Sat, 03 Feb 2001 04:05:06 GMT
12531
12657
  * Tue, 14 Mar 2023 12:34:56 UTC
12532
12658
  * Wed, 25 May 2024 20:45:07 EST
12533
- */ var UTC_DATE_STRING_REGEX = /^([a-zA-Z]{3}, [0-9]{2} [a-zA-Z]{3} [0-9]{4} [0-9]{2}:[0-9]{2}:[0-9]{2} [A-Z]{3})$/;
12659
+ */ var UTC_DATE_STRING_REGEX = /^([a-zA-Z]{3}, \d{2} [a-zA-Z]{3} \d{4} \d{2}:\d{2}:\d{2} [A-Z]{3})$/;
12534
12660
  /**
12535
12661
  * Determines if a string is a valid UTC date string.
12536
12662
  *
@@ -16549,7 +16675,7 @@ function _is_native_reflect_construct$2() {
16549
16675
  result = 0;
16550
16676
  break;
16551
16677
  case 'running':
16552
- result = Math.max(0, currentDuration - (new Date().getTime() - startedAt.getTime()));
16678
+ result = Math.max(0, currentDuration - (Date.now() - startedAt.getTime()));
16553
16679
  break;
16554
16680
  case 'paused':
16555
16681
  result = null;
@@ -16857,6 +16983,7 @@ function _array_with_holes$6(arr) {
16857
16983
  if (Array.isArray(arr)) return arr;
16858
16984
  }
16859
16985
  function _instanceof(left, right) {
16986
+ "@swc/helpers - instanceof";
16860
16987
  if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
16861
16988
  return !!right[Symbol.hasInstance](left);
16862
16989
  } else {
@@ -19936,7 +20063,9 @@ function invertMaybeBoolean(x) {
19936
20063
  * ```
19937
20064
  */ function reduceBooleansFn(reduceFn, emptyArrayValue) {
19938
20065
  var rFn = function rFn(array) {
19939
- return Boolean(array.reduce(reduceFn));
20066
+ return Boolean(array.reduce(function(a, b) {
20067
+ return reduceFn(a, b);
20068
+ }));
19940
20069
  };
19941
20070
  return emptyArrayValue != null ? function(array) {
19942
20071
  return array.length ? rFn(array) : emptyArrayValue;
@@ -20776,4 +20905,4 @@ function _ts_generator(thisArg, body) {
20776
20905
  return result;
20777
20906
  }
20778
20907
 
20779
- 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_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, 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_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, 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, 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, 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_DEFAULT_NEGATIVE_PREFIX, NUMBER_STRING_DENCODER_64_DIGITS, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, 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, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, 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, 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, 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, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, 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, mergeArrays, mergeArraysIntoArray, 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, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, 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, 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, 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 };
20908
+ 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_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, 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_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, 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, 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, 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_DEFAULT_NEGATIVE_PREFIX, NUMBER_STRING_DENCODER_64_DIGITS, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, 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, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, 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, 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, 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, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, 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, mergeArrays, mergeArraysIntoArray, 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, 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, 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 };