@ezez/utils 1.8.1 → 2.0.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.
Files changed (162) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/README.md +3 -0
  3. package/dist/deserialize.d.ts +13 -0
  4. package/dist/deserialize.d.ts.map +1 -0
  5. package/dist/deserialize.js +42 -0
  6. package/dist/deserialize.js.map +1 -0
  7. package/dist/index.d.ts +4 -0
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +4 -0
  10. package/dist/index.js.map +1 -1
  11. package/dist/omit.js +3 -1
  12. package/dist/omit.js.map +1 -1
  13. package/dist/removeCommonProperties.d.ts +4 -0
  14. package/dist/removeCommonProperties.d.ts.map +1 -0
  15. package/dist/removeCommonProperties.js +15 -0
  16. package/dist/removeCommonProperties.js.map +1 -0
  17. package/dist/replace.d.ts.map +1 -1
  18. package/dist/replace.js.map +1 -1
  19. package/dist/replaceDeep.d.ts +3 -0
  20. package/dist/replaceDeep.d.ts.map +1 -0
  21. package/dist/replaceDeep.js +26 -0
  22. package/dist/replaceDeep.js.map +1 -0
  23. package/dist/safe.d.ts.map +1 -1
  24. package/dist/safe.js +1 -1
  25. package/dist/safe.js.map +1 -1
  26. package/dist/serialize.d.ts +16 -0
  27. package/dist/serialize.d.ts.map +1 -0
  28. package/dist/serialize.js +61 -0
  29. package/dist/serialize.js.map +1 -0
  30. package/dist/setImmutable.js +1 -1
  31. package/dist/setImmutable.js.map +1 -1
  32. package/dist/sortBy.js +1 -2
  33. package/dist/sortBy.js.map +1 -1
  34. package/dist/sortProps.d.ts.map +1 -1
  35. package/dist/sortProps.js.map +1 -1
  36. package/dist/throttle.js +5 -7
  37. package/dist/throttle.js.map +1 -1
  38. package/docs/assets/search.js +1 -1
  39. package/docs/functions/cap.html +12 -6
  40. package/docs/functions/capitalize.html +12 -6
  41. package/docs/functions/coalesce.html +12 -6
  42. package/docs/functions/compareArrays.html +12 -6
  43. package/docs/functions/compareProps.html +12 -6
  44. package/docs/functions/deserialize.html +148 -0
  45. package/docs/functions/ensureArray.html +12 -6
  46. package/docs/functions/ensureDate.html +12 -6
  47. package/docs/functions/ensureError.html +12 -6
  48. package/docs/functions/ensurePrefix.html +12 -6
  49. package/docs/functions/ensureSuffix.html +12 -6
  50. package/docs/functions/ensureTimestamp.html +12 -6
  51. package/docs/functions/escapeRegExp.html +12 -6
  52. package/docs/functions/formatDate.html +12 -6
  53. package/docs/functions/get.html +12 -6
  54. package/docs/functions/getMultiple.html +12 -6
  55. package/docs/functions/insertSeparator.html +12 -6
  56. package/docs/functions/isEmpty.html +12 -6
  57. package/docs/functions/isNumericString.html +12 -6
  58. package/docs/functions/isPlainObject.html +12 -6
  59. package/docs/functions/last.html +12 -6
  60. package/docs/functions/later-1.html +12 -6
  61. package/docs/functions/mapAsync.html +12 -6
  62. package/docs/functions/mapValues.html +12 -6
  63. package/docs/functions/match.html +12 -6
  64. package/docs/functions/merge.html +20 -14
  65. package/docs/functions/mostFrequent.html +12 -6
  66. package/docs/functions/noop.html +12 -6
  67. package/docs/functions/occurrences.html +12 -6
  68. package/docs/functions/omit.html +12 -6
  69. package/docs/functions/pick.html +12 -6
  70. package/docs/functions/pull.html +12 -6
  71. package/docs/functions/remove.html +12 -6
  72. package/docs/functions/removeCommonProperties.html +156 -0
  73. package/docs/functions/replace.html +12 -6
  74. package/docs/functions/replaceDeep.html +153 -0
  75. package/docs/functions/rethrow.html +12 -6
  76. package/docs/functions/safe.html +13 -7
  77. package/docs/functions/scale.html +12 -6
  78. package/docs/functions/seq.html +12 -6
  79. package/docs/functions/seqEarlyBreak.html +12 -6
  80. package/docs/functions/serialize.html +153 -0
  81. package/docs/functions/set.html +12 -6
  82. package/docs/functions/setImmutable.html +12 -6
  83. package/docs/functions/sortBy.html +12 -6
  84. package/docs/functions/sortProps.html +15 -7
  85. package/docs/functions/stripPrefix.html +12 -6
  86. package/docs/functions/stripSuffix.html +12 -6
  87. package/docs/functions/throttle.html +12 -6
  88. package/docs/functions/truthy.html +12 -6
  89. package/docs/functions/unique.html +12 -6
  90. package/docs/functions/wait.html +12 -6
  91. package/docs/functions/waitFor.html +12 -6
  92. package/docs/functions/waitSync.html +12 -6
  93. package/docs/index.html +14 -5
  94. package/docs/interfaces/ComparePropsOptions.html +6 -6
  95. package/docs/interfaces/GetMultipleSource.html +12 -6
  96. package/docs/interfaces/GetSource.html +12 -6
  97. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  98. package/docs/interfaces/OccurencesOptions.html +6 -6
  99. package/docs/interfaces/SetImmutableSource.html +12 -6
  100. package/docs/interfaces/SetSource.html +12 -6
  101. package/docs/interfaces/ThrottleOptions.html +7 -7
  102. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  103. package/docs/modules.html +17 -5
  104. package/docs/pages/CHANGELOG.html +76 -38
  105. package/docs/pages/Introduction.html +11 -5
  106. package/docs/types/CustomDeserializers.html +151 -0
  107. package/docs/types/CustomSerializers.html +151 -0
  108. package/docs/types/Later.html +12 -6
  109. package/docs/types/MapValuesFn.html +12 -6
  110. package/docs/types/MatchCallback.html +12 -6
  111. package/docs/types/SeqEarlyBreaker.html +12 -6
  112. package/docs/types/SeqFn.html +12 -6
  113. package/docs/types/SeqFunctions.html +12 -6
  114. package/docs/types/SetImmutablePath.html +12 -6
  115. package/docs/types/ThrottledFunction.html +12 -6
  116. package/docs/variables/mapValuesUNSET.html +12 -6
  117. package/docs/variables/mergeUNSET.html +12 -6
  118. package/esm/deserialize.d.ts +13 -0
  119. package/esm/deserialize.d.ts.map +1 -0
  120. package/esm/deserialize.js +39 -0
  121. package/esm/deserialize.js.map +1 -0
  122. package/esm/index.d.ts +4 -0
  123. package/esm/index.d.ts.map +1 -1
  124. package/esm/index.js +4 -0
  125. package/esm/index.js.map +1 -1
  126. package/esm/removeCommonProperties.d.ts +4 -0
  127. package/esm/removeCommonProperties.d.ts.map +1 -0
  128. package/esm/removeCommonProperties.js +12 -0
  129. package/esm/removeCommonProperties.js.map +1 -0
  130. package/esm/replace.d.ts.map +1 -1
  131. package/esm/replace.js.map +1 -1
  132. package/esm/replaceDeep.d.ts +3 -0
  133. package/esm/replaceDeep.d.ts.map +1 -0
  134. package/esm/replaceDeep.js +23 -0
  135. package/esm/replaceDeep.js.map +1 -0
  136. package/esm/safe.d.ts.map +1 -1
  137. package/esm/safe.js.map +1 -1
  138. package/esm/serialize.d.ts +16 -0
  139. package/esm/serialize.d.ts.map +1 -0
  140. package/esm/serialize.js +58 -0
  141. package/esm/serialize.js.map +1 -0
  142. package/esm/sortBy.js +1 -2
  143. package/esm/sortBy.js.map +1 -1
  144. package/esm/sortProps.d.ts.map +1 -1
  145. package/esm/sortProps.js.map +1 -1
  146. package/esm/throttle.js +5 -7
  147. package/esm/throttle.js.map +1 -1
  148. package/package.json +28 -27
  149. package/pnpm-lock.yaml +5223 -0
  150. package/src/deserialize.spec.ts +69 -0
  151. package/src/deserialize.ts +74 -0
  152. package/src/index.ts +4 -0
  153. package/src/removeCommonProperties.spec.ts +34 -0
  154. package/src/removeCommonProperties.ts +39 -0
  155. package/src/replace.ts +0 -1
  156. package/src/replaceDeep.spec.ts +71 -0
  157. package/src/replaceDeep.ts +44 -0
  158. package/src/safe.ts +0 -1
  159. package/src/serialize.spec.ts +83 -0
  160. package/src/serialize.ts +102 -0
  161. package/src/sortProps.ts +4 -1
  162. package/babel.config.cjs +0 -6
@@ -1 +1 @@
1
- window.searchData = JSON.parse("{\"kinds\":{\"32\":\"Variable\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"33554432\":\"@knodes/typedoc-plugin-pages: page\"},\"rows\":[{\"kind\":64,\"name\":\"ensurePrefix\",\"url\":\"functions/ensurePrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureSuffix\",\"url\":\"functions/ensureSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"cap\",\"url\":\"functions/cap.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/capitalize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"coalesce\",\"url\":\"functions/coalesce.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"compareArrays\",\"url\":\"functions/compareArrays.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/compareArrays.html#compareArrays.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"compareArrays.compareArrays\"},{\"kind\":1024,\"name\":\"onlyA\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyA\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"onlyB\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyB\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"both\",\"url\":\"functions/compareArrays.html#compareArrays.__type.both\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":64,\"name\":\"compareProps\",\"url\":\"functions/compareProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ComparePropsOptions\",\"url\":\"interfaces/ComparePropsOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"missingEqualsUndefined\",\"url\":\"interfaces/ComparePropsOptions.html#missingEqualsUndefined\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ComparePropsOptions\"},{\"kind\":64,\"name\":\"ensureArray\",\"url\":\"functions/ensureArray.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureDate\",\"url\":\"functions/ensureDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureError\",\"url\":\"functions/ensureError.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureTimestamp\",\"url\":\"functions/ensureTimestamp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/escapeRegExp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"formatDate\",\"url\":\"functions/formatDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"get\",\"url\":\"functions/get.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetSource\",\"url\":\"interfaces/GetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"getMultiple\",\"url\":\"functions/getMultiple.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetMultipleSource\",\"url\":\"interfaces/GetMultipleSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"insertSeparator\",\"url\":\"functions/insertSeparator.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isEmpty\",\"url\":\"functions/isEmpty.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isNumericString\",\"url\":\"functions/isNumericString.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"IsNumericStringOptions\",\"url\":\"interfaces/IsNumericStringOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"allowFloats\",\"url\":\"interfaces/IsNumericStringOptions.html#allowFloats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowExponents\",\"url\":\"interfaces/IsNumericStringOptions.html#allowExponents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowInfinity\",\"url\":\"interfaces/IsNumericStringOptions.html#allowInfinity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowNaN\",\"url\":\"interfaces/IsNumericStringOptions.html#allowNaN\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":64,\"name\":\"isPlainObject\",\"url\":\"functions/isPlainObject.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"last\",\"url\":\"functions/last.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"Later\",\"url\":\"types/Later.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Later\"},{\"kind\":1024,\"name\":\"promise\",\"url\":\"types/Later.html#__type.promise\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":1024,\"name\":\"resolve\",\"url\":\"types/Later.html#__type.resolve\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type.resolve.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Later.__type.resolve\"},{\"kind\":1024,\"name\":\"reject\",\"url\":\"types/Later.html#__type.reject\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type.reject.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Later.__type.reject\"},{\"kind\":64,\"name\":\"later\",\"url\":\"functions/later-1.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapAsync\",\"url\":\"functions/mapAsync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/mapValues.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mapValuesUNSET\",\"url\":\"variables/mapValuesUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mapValuesUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mapValuesUNSET\"},{\"kind\":4194304,\"name\":\"MapValuesFn\",\"url\":\"types/MapValuesFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapValuesFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapValuesFn\"},{\"kind\":64,\"name\":\"match\",\"url\":\"functions/match.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/match.html#match.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"match.match\"},{\"kind\":1024,\"name\":\"matched\",\"url\":\"functions/match.html#match.__type.matched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":1024,\"name\":\"unmatched\",\"url\":\"functions/match.html#match.__type.unmatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":4194304,\"name\":\"MatchCallback\",\"url\":\"types/MatchCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MatchCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MatchCallback\"},{\"kind\":64,\"name\":\"merge\",\"url\":\"functions/merge.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mergeUNSET\",\"url\":\"variables/mergeUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mergeUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mergeUNSET\"},{\"kind\":64,\"name\":\"mostFrequent\",\"url\":\"functions/mostFrequent.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"noop\",\"url\":\"functions/noop.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"occurrences\",\"url\":\"functions/occurrences.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"OccurencesOptions\",\"url\":\"interfaces/OccurencesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"overlap\",\"url\":\"interfaces/OccurencesOptions.html#overlap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OccurencesOptions\"},{\"kind\":64,\"name\":\"omit\",\"url\":\"functions/omit.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pick\",\"url\":\"functions/pick.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pull\",\"url\":\"functions/pull.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"remove\",\"url\":\"functions/remove.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"replace\",\"url\":\"functions/replace.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"rethrow\",\"url\":\"functions/rethrow.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"safe\",\"url\":\"functions/safe.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"scale\",\"url\":\"functions/scale.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seq\",\"url\":\"functions/seq.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seqEarlyBreak\",\"url\":\"functions/seqEarlyBreak.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SeqEarlyBreaker\",\"url\":\"types/SeqEarlyBreaker.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqEarlyBreaker.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqEarlyBreaker\"},{\"kind\":4194304,\"name\":\"SeqFunctions\",\"url\":\"types/SeqFunctions.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"SeqFn\",\"url\":\"types/SeqFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqFn\"},{\"kind\":64,\"name\":\"set\",\"url\":\"functions/set.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"SetSource\",\"url\":\"interfaces/SetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"setImmutable\",\"url\":\"functions/setImmutable.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SetImmutablePath\",\"url\":\"types/SetImmutablePath.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"SetImmutableSource\",\"url\":\"interfaces/SetImmutableSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"sortBy\",\"url\":\"functions/sortBy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/sortBy.html#sortBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"sortBy.sortBy\"},{\"kind\":64,\"name\":\"sortProps\",\"url\":\"functions/sortProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripPrefix\",\"url\":\"functions/stripPrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripSuffix\",\"url\":\"functions/stripSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"throttle\",\"url\":\"functions/throttle.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ThrottledFunctionExtras\",\"url\":\"interfaces/ThrottledFunctionExtras.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.cancel\"},{\"kind\":1024,\"name\":\"flush\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.flush\"},{\"kind\":256,\"name\":\"ThrottleOptions\",\"url\":\"interfaces/ThrottleOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"leading\",\"url\":\"interfaces/ThrottleOptions.html#leading\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":1024,\"name\":\"trailing\",\"url\":\"interfaces/ThrottleOptions.html#trailing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":4194304,\"name\":\"ThrottledFunction\",\"url\":\"types/ThrottledFunction.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ThrottledFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ThrottledFunction\"},{\"kind\":64,\"name\":\"truthy\",\"url\":\"functions/truthy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"unique\",\"url\":\"functions/unique.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"wait\",\"url\":\"functions/wait.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitFor\",\"url\":\"functions/waitFor.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitSync\",\"url\":\"functions/waitSync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":33554432,\"name\":\"Introduction\",\"url\":\"pages/Introduction.html\",\"classes\":\"pages-entry pages-entry-page\"},{\"kind\":33554432,\"name\":\"Changelog\",\"url\":\"pages/CHANGELOG.html\",\"classes\":\"pages-entry pages-entry-page\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,42.485]],[\"comment/0\",[]],[\"name/1\",[1,42.485]],[\"comment/1\",[]],[\"name/2\",[2,42.485]],[\"comment/2\",[]],[\"name/3\",[3,42.485]],[\"comment/3\",[]],[\"name/4\",[4,42.485]],[\"comment/4\",[]],[\"name/5\",[5,42.485]],[\"comment/5\",[]],[\"name/6\",[6,19.131]],[\"comment/6\",[]],[\"name/7\",[7,42.485]],[\"comment/7\",[]],[\"name/8\",[8,42.485]],[\"comment/8\",[]],[\"name/9\",[9,42.485]],[\"comment/9\",[]],[\"name/10\",[10,42.485]],[\"comment/10\",[]],[\"name/11\",[11,42.485]],[\"comment/11\",[]],[\"name/12\",[12,42.485]],[\"comment/12\",[]],[\"name/13\",[13,42.485]],[\"comment/13\",[]],[\"name/14\",[14,42.485]],[\"comment/14\",[]],[\"name/15\",[15,42.485]],[\"comment/15\",[]],[\"name/16\",[16,42.485]],[\"comment/16\",[]],[\"name/17\",[17,42.485]],[\"comment/17\",[]],[\"name/18\",[18,42.485]],[\"comment/18\",[]],[\"name/19\",[19,42.485]],[\"comment/19\",[]],[\"name/20\",[20,42.485]],[\"comment/20\",[]],[\"name/21\",[21,42.485]],[\"comment/21\",[]],[\"name/22\",[22,42.485]],[\"comment/22\",[]],[\"name/23\",[23,42.485]],[\"comment/23\",[]],[\"name/24\",[24,42.485]],[\"comment/24\",[]],[\"name/25\",[25,42.485]],[\"comment/25\",[]],[\"name/26\",[26,42.485]],[\"comment/26\",[]],[\"name/27\",[27,42.485]],[\"comment/27\",[]],[\"name/28\",[28,42.485]],[\"comment/28\",[]],[\"name/29\",[29,42.485]],[\"comment/29\",[]],[\"name/30\",[30,42.485]],[\"comment/30\",[]],[\"name/31\",[31,42.485]],[\"comment/31\",[]],[\"name/32\",[32,42.485]],[\"comment/32\",[]],[\"name/33\",[33,37.377]],[\"comment/33\",[]],[\"name/34\",[6,19.131]],[\"comment/34\",[]],[\"name/35\",[34,42.485]],[\"comment/35\",[]],[\"name/36\",[35,42.485]],[\"comment/36\",[]],[\"name/37\",[6,19.131]],[\"comment/37\",[]],[\"name/38\",[36,42.485]],[\"comment/38\",[]],[\"name/39\",[6,19.131]],[\"comment/39\",[]],[\"name/40\",[33,37.377]],[\"comment/40\",[]],[\"name/41\",[37,42.485]],[\"comment/41\",[]],[\"name/42\",[38,42.485]],[\"comment/42\",[]],[\"name/43\",[39,42.485]],[\"comment/43\",[]],[\"name/44\",[6,19.131]],[\"comment/44\",[]],[\"name/45\",[40,42.485]],[\"comment/45\",[]],[\"name/46\",[6,19.131]],[\"comment/46\",[]],[\"name/47\",[41,42.485]],[\"comment/47\",[]],[\"name/48\",[6,19.131]],[\"comment/48\",[]],[\"name/49\",[42,42.485]],[\"comment/49\",[]],[\"name/50\",[43,42.485]],[\"comment/50\",[]],[\"name/51\",[44,42.485]],[\"comment/51\",[]],[\"name/52\",[6,19.131]],[\"comment/52\",[]],[\"name/53\",[45,42.485]],[\"comment/53\",[]],[\"name/54\",[46,42.485]],[\"comment/54\",[]],[\"name/55\",[6,19.131]],[\"comment/55\",[]],[\"name/56\",[47,42.485]],[\"comment/56\",[]],[\"name/57\",[48,42.485]],[\"comment/57\",[]],[\"name/58\",[49,42.485]],[\"comment/58\",[]],[\"name/59\",[50,42.485]],[\"comment/59\",[]],[\"name/60\",[51,42.485]],[\"comment/60\",[]],[\"name/61\",[52,42.485]],[\"comment/61\",[]],[\"name/62\",[53,42.485]],[\"comment/62\",[]],[\"name/63\",[54,42.485]],[\"comment/63\",[]],[\"name/64\",[55,42.485]],[\"comment/64\",[]],[\"name/65\",[56,42.485]],[\"comment/65\",[]],[\"name/66\",[57,42.485]],[\"comment/66\",[]],[\"name/67\",[58,42.485]],[\"comment/67\",[]],[\"name/68\",[59,42.485]],[\"comment/68\",[]],[\"name/69\",[60,42.485]],[\"comment/69\",[]],[\"name/70\",[61,42.485]],[\"comment/70\",[]],[\"name/71\",[62,42.485]],[\"comment/71\",[]],[\"name/72\",[6,19.131]],[\"comment/72\",[]],[\"name/73\",[63,42.485]],[\"comment/73\",[]],[\"name/74\",[64,42.485]],[\"comment/74\",[]],[\"name/75\",[6,19.131]],[\"comment/75\",[]],[\"name/76\",[65,42.485]],[\"comment/76\",[]],[\"name/77\",[66,42.485]],[\"comment/77\",[]],[\"name/78\",[67,42.485]],[\"comment/78\",[]],[\"name/79\",[68,42.485]],[\"comment/79\",[]],[\"name/80\",[69,42.485]],[\"comment/80\",[]],[\"name/81\",[70,42.485]],[\"comment/81\",[]],[\"name/82\",[6,19.131]],[\"comment/82\",[]],[\"name/83\",[71,42.485]],[\"comment/83\",[]],[\"name/84\",[72,42.485]],[\"comment/84\",[]],[\"name/85\",[73,42.485]],[\"comment/85\",[]],[\"name/86\",[74,42.485]],[\"comment/86\",[]],[\"name/87\",[75,42.485]],[\"comment/87\",[]],[\"name/88\",[76,42.485]],[\"comment/88\",[]],[\"name/89\",[6,19.131]],[\"comment/89\",[]],[\"name/90\",[77,42.485]],[\"comment/90\",[]],[\"name/91\",[6,19.131]],[\"comment/91\",[]],[\"name/92\",[78,42.485]],[\"comment/92\",[]],[\"name/93\",[79,42.485]],[\"comment/93\",[]],[\"name/94\",[80,42.485]],[\"comment/94\",[]],[\"name/95\",[81,42.485]],[\"comment/95\",[]],[\"name/96\",[6,19.131]],[\"comment/96\",[]],[\"name/97\",[82,42.485]],[\"comment/97\",[]],[\"name/98\",[83,42.485]],[\"comment/98\",[]],[\"name/99\",[84,42.485]],[\"comment/99\",[]],[\"name/100\",[85,42.485]],[\"comment/100\",[]],[\"name/101\",[86,42.485]],[\"comment/101\",[]],[\"name/102\",[87,42.485]],[\"comment/102\",[]],[\"name/103\",[88,42.485]],[\"comment/103\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"34\":{},\"37\":{},\"39\":{},\"44\":{},\"46\":{},\"48\":{},\"52\":{},\"55\":{},\"72\":{},\"75\":{},\"82\":{},\"89\":{},\"91\":{},\"96\":{}},\"comment\":{}}],[\"allowexponents\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"allowfloats\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"allowinfinity\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"allownan\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"both\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":76,\"name\":{\"88\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":88,\"name\":{\"103\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"comparearrays\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"compareprops\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"comparepropsoptions\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"ensuredate\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"ensureprefix\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"ensuresuffix\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"ensuretimestamp\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"flush\",{\"_index\":77,\"name\":{\"90\":{}},\"comment\":{}}],[\"formatdate\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"get\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":87,\"name\":{\"102\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"isnumericstring\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"isnumericstringoptions\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"last\",{\"_index\":32,\"name\":{\"32\":{}},\"comment\":{}}],[\"later\",{\"_index\":33,\"name\":{\"33\":{},\"40\":{}},\"comment\":{}}],[\"leading\",{\"_index\":79,\"name\":{\"93\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":37,\"name\":{\"41\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":38,\"name\":{\"42\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":40,\"name\":{\"45\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":39,\"name\":{\"43\":{}},\"comment\":{}}],[\"match\",{\"_index\":41,\"name\":{\"47\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":44,\"name\":{\"51\":{}},\"comment\":{}}],[\"matched\",{\"_index\":42,\"name\":{\"49\":{}},\"comment\":{}}],[\"merge\",{\"_index\":45,\"name\":{\"53\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":46,\"name\":{\"54\":{}},\"comment\":{}}],[\"missingequalsundefined\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":47,\"name\":{\"56\":{}},\"comment\":{}}],[\"noop\",{\"_index\":48,\"name\":{\"57\":{}},\"comment\":{}}],[\"occurencesoptions\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"occurrences\",{\"_index\":49,\"name\":{\"58\":{}},\"comment\":{}}],[\"omit\",{\"_index\":52,\"name\":{\"61\":{}},\"comment\":{}}],[\"onlya\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"onlyb\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"overlap\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"pick\",{\"_index\":53,\"name\":{\"62\":{}},\"comment\":{}}],[\"promise\",{\"_index\":34,\"name\":{\"35\":{}},\"comment\":{}}],[\"pull\",{\"_index\":54,\"name\":{\"63\":{}},\"comment\":{}}],[\"reject\",{\"_index\":36,\"name\":{\"38\":{}},\"comment\":{}}],[\"remove\",{\"_index\":55,\"name\":{\"64\":{}},\"comment\":{}}],[\"replace\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"resolve\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"safe\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"scale\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"seq\",{\"_index\":60,\"name\":{\"69\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":64,\"name\":{\"74\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":63,\"name\":{\"73\":{}},\"comment\":{}}],[\"set\",{\"_index\":65,\"name\":{\"76\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":67,\"name\":{\"78\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":68,\"name\":{\"79\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":69,\"name\":{\"80\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":66,\"name\":{\"77\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":70,\"name\":{\"81\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":71,\"name\":{\"83\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":72,\"name\":{\"84\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":73,\"name\":{\"85\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":74,\"name\":{\"86\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":81,\"name\":{\"95\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":75,\"name\":{\"87\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":78,\"name\":{\"92\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":80,\"name\":{\"94\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":82,\"name\":{\"97\":{}},\"comment\":{}}],[\"unique\",{\"_index\":83,\"name\":{\"98\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":43,\"name\":{\"50\":{}},\"comment\":{}}],[\"wait\",{\"_index\":84,\"name\":{\"99\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":85,\"name\":{\"100\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":86,\"name\":{\"101\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
1
+ window.searchData = JSON.parse("{\"kinds\":{\"32\":\"Variable\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"33554432\":\"@knodes/typedoc-plugin-pages: page\"},\"rows\":[{\"kind\":64,\"name\":\"ensurePrefix\",\"url\":\"functions/ensurePrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureSuffix\",\"url\":\"functions/ensureSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"cap\",\"url\":\"functions/cap.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/capitalize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"coalesce\",\"url\":\"functions/coalesce.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"compareArrays\",\"url\":\"functions/compareArrays.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/compareArrays.html#compareArrays.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"compareArrays.compareArrays\"},{\"kind\":1024,\"name\":\"onlyA\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyA\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"onlyB\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyB\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"both\",\"url\":\"functions/compareArrays.html#compareArrays.__type.both\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":64,\"name\":\"compareProps\",\"url\":\"functions/compareProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ComparePropsOptions\",\"url\":\"interfaces/ComparePropsOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"missingEqualsUndefined\",\"url\":\"interfaces/ComparePropsOptions.html#missingEqualsUndefined\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ComparePropsOptions\"},{\"kind\":64,\"name\":\"deserialize\",\"url\":\"functions/deserialize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"CustomDeserializers\",\"url\":\"types/CustomDeserializers.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CustomDeserializers.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"CustomDeserializers\"},{\"kind\":1024,\"name\":\"s\",\"url\":\"types/CustomDeserializers.html#__type.s\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"types/CustomDeserializers.html#__type.n\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":1024,\"name\":\"u\",\"url\":\"types/CustomDeserializers.html#__type.u\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":1024,\"name\":\"l\",\"url\":\"types/CustomDeserializers.html#__type.l\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":1024,\"name\":\"b\",\"url\":\"types/CustomDeserializers.html#__type.b\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":1024,\"name\":\"i\",\"url\":\"types/CustomDeserializers.html#__type.i\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomDeserializers.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CustomDeserializers.html#__type.__index.__type-1\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"CustomDeserializers.__type.__index\"},{\"kind\":64,\"name\":\"ensureArray\",\"url\":\"functions/ensureArray.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureDate\",\"url\":\"functions/ensureDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureError\",\"url\":\"functions/ensureError.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureTimestamp\",\"url\":\"functions/ensureTimestamp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/escapeRegExp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"formatDate\",\"url\":\"functions/formatDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"get\",\"url\":\"functions/get.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetSource\",\"url\":\"interfaces/GetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"getMultiple\",\"url\":\"functions/getMultiple.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetMultipleSource\",\"url\":\"interfaces/GetMultipleSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"insertSeparator\",\"url\":\"functions/insertSeparator.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isEmpty\",\"url\":\"functions/isEmpty.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isNumericString\",\"url\":\"functions/isNumericString.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"IsNumericStringOptions\",\"url\":\"interfaces/IsNumericStringOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"allowFloats\",\"url\":\"interfaces/IsNumericStringOptions.html#allowFloats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowExponents\",\"url\":\"interfaces/IsNumericStringOptions.html#allowExponents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowInfinity\",\"url\":\"interfaces/IsNumericStringOptions.html#allowInfinity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowNaN\",\"url\":\"interfaces/IsNumericStringOptions.html#allowNaN\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":64,\"name\":\"isPlainObject\",\"url\":\"functions/isPlainObject.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"last\",\"url\":\"functions/last.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"Later\",\"url\":\"types/Later.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Later\"},{\"kind\":1024,\"name\":\"promise\",\"url\":\"types/Later.html#__type.promise\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":1024,\"name\":\"resolve\",\"url\":\"types/Later.html#__type.resolve\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type.resolve.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Later.__type.resolve\"},{\"kind\":1024,\"name\":\"reject\",\"url\":\"types/Later.html#__type.reject\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Later.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Later.html#__type.reject.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Later.__type.reject\"},{\"kind\":64,\"name\":\"later\",\"url\":\"functions/later-1.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapAsync\",\"url\":\"functions/mapAsync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/mapValues.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mapValuesUNSET\",\"url\":\"variables/mapValuesUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mapValuesUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mapValuesUNSET\"},{\"kind\":4194304,\"name\":\"MapValuesFn\",\"url\":\"types/MapValuesFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapValuesFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapValuesFn\"},{\"kind\":64,\"name\":\"match\",\"url\":\"functions/match.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/match.html#match.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"match.match\"},{\"kind\":1024,\"name\":\"matched\",\"url\":\"functions/match.html#match.__type.matched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":1024,\"name\":\"unmatched\",\"url\":\"functions/match.html#match.__type.unmatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":4194304,\"name\":\"MatchCallback\",\"url\":\"types/MatchCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MatchCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MatchCallback\"},{\"kind\":64,\"name\":\"merge\",\"url\":\"functions/merge.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mergeUNSET\",\"url\":\"variables/mergeUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mergeUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mergeUNSET\"},{\"kind\":64,\"name\":\"mostFrequent\",\"url\":\"functions/mostFrequent.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"noop\",\"url\":\"functions/noop.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"occurrences\",\"url\":\"functions/occurrences.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"OccurencesOptions\",\"url\":\"interfaces/OccurencesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"overlap\",\"url\":\"interfaces/OccurencesOptions.html#overlap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OccurencesOptions\"},{\"kind\":64,\"name\":\"omit\",\"url\":\"functions/omit.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pick\",\"url\":\"functions/pick.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pull\",\"url\":\"functions/pull.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"remove\",\"url\":\"functions/remove.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"removeCommonProperties\",\"url\":\"functions/removeCommonProperties.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"replace\",\"url\":\"functions/replace.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"replaceDeep\",\"url\":\"functions/replaceDeep.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"rethrow\",\"url\":\"functions/rethrow.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"safe\",\"url\":\"functions/safe.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"scale\",\"url\":\"functions/scale.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seq\",\"url\":\"functions/seq.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seqEarlyBreak\",\"url\":\"functions/seqEarlyBreak.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SeqEarlyBreaker\",\"url\":\"types/SeqEarlyBreaker.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqEarlyBreaker.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqEarlyBreaker\"},{\"kind\":4194304,\"name\":\"SeqFunctions\",\"url\":\"types/SeqFunctions.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"SeqFn\",\"url\":\"types/SeqFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqFn\"},{\"kind\":4194304,\"name\":\"CustomSerializers\",\"url\":\"types/CustomSerializers.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CustomSerializers.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"CustomSerializers\"},{\"kind\":1024,\"name\":\"s\",\"url\":\"types/CustomSerializers.html#__type.s\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"types/CustomSerializers.html#__type.n\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":1024,\"name\":\"u\",\"url\":\"types/CustomSerializers.html#__type.u\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":1024,\"name\":\"l\",\"url\":\"types/CustomSerializers.html#__type.l\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":1024,\"name\":\"b\",\"url\":\"types/CustomSerializers.html#__type.b\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":1024,\"name\":\"i\",\"url\":\"types/CustomSerializers.html#__type.i\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CustomSerializers.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CustomSerializers.html#__type.__index.__type-1\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"CustomSerializers.__type.__index\"},{\"kind\":64,\"name\":\"serialize\",\"url\":\"functions/serialize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"set\",\"url\":\"functions/set.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"SetSource\",\"url\":\"interfaces/SetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"setImmutable\",\"url\":\"functions/setImmutable.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SetImmutablePath\",\"url\":\"types/SetImmutablePath.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"SetImmutableSource\",\"url\":\"interfaces/SetImmutableSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"sortBy\",\"url\":\"functions/sortBy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/sortBy.html#sortBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"sortBy.sortBy\"},{\"kind\":64,\"name\":\"sortProps\",\"url\":\"functions/sortProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripPrefix\",\"url\":\"functions/stripPrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripSuffix\",\"url\":\"functions/stripSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"throttle\",\"url\":\"functions/throttle.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ThrottledFunctionExtras\",\"url\":\"interfaces/ThrottledFunctionExtras.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.cancel\"},{\"kind\":1024,\"name\":\"flush\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.flush\"},{\"kind\":256,\"name\":\"ThrottleOptions\",\"url\":\"interfaces/ThrottleOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"leading\",\"url\":\"interfaces/ThrottleOptions.html#leading\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":1024,\"name\":\"trailing\",\"url\":\"interfaces/ThrottleOptions.html#trailing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":4194304,\"name\":\"ThrottledFunction\",\"url\":\"types/ThrottledFunction.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ThrottledFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ThrottledFunction\"},{\"kind\":64,\"name\":\"truthy\",\"url\":\"functions/truthy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"unique\",\"url\":\"functions/unique.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"wait\",\"url\":\"functions/wait.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitFor\",\"url\":\"functions/waitFor.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitSync\",\"url\":\"functions/waitSync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":33554432,\"name\":\"Introduction\",\"url\":\"pages/Introduction.html\",\"classes\":\"pages-entry pages-entry-page\"},{\"kind\":33554432,\"name\":\"Changelog\",\"url\":\"pages/CHANGELOG.html\",\"classes\":\"pages-entry pages-entry-page\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,44.387]],[\"comment/0\",[]],[\"name/1\",[1,44.387]],[\"comment/1\",[]],[\"name/2\",[2,44.387]],[\"comment/2\",[]],[\"name/3\",[3,44.387]],[\"comment/3\",[]],[\"name/4\",[4,44.387]],[\"comment/4\",[]],[\"name/5\",[5,44.387]],[\"comment/5\",[]],[\"name/6\",[6,18.738]],[\"comment/6\",[]],[\"name/7\",[7,44.387]],[\"comment/7\",[]],[\"name/8\",[8,44.387]],[\"comment/8\",[]],[\"name/9\",[9,44.387]],[\"comment/9\",[]],[\"name/10\",[10,44.387]],[\"comment/10\",[]],[\"name/11\",[11,44.387]],[\"comment/11\",[]],[\"name/12\",[12,44.387]],[\"comment/12\",[]],[\"name/13\",[13,44.387]],[\"comment/13\",[]],[\"name/14\",[14,44.387]],[\"comment/14\",[]],[\"name/15\",[6,18.738]],[\"comment/15\",[]],[\"name/16\",[15,39.279]],[\"comment/16\",[]],[\"name/17\",[16,39.279]],[\"comment/17\",[]],[\"name/18\",[17,39.279]],[\"comment/18\",[]],[\"name/19\",[18,39.279]],[\"comment/19\",[]],[\"name/20\",[19,39.279]],[\"comment/20\",[]],[\"name/21\",[20,39.279]],[\"comment/21\",[]],[\"name/22\",[6,18.738]],[\"comment/22\",[]],[\"name/23\",[21,44.387]],[\"comment/23\",[]],[\"name/24\",[22,44.387]],[\"comment/24\",[]],[\"name/25\",[23,44.387]],[\"comment/25\",[]],[\"name/26\",[24,44.387]],[\"comment/26\",[]],[\"name/27\",[25,44.387]],[\"comment/27\",[]],[\"name/28\",[26,44.387]],[\"comment/28\",[]],[\"name/29\",[27,44.387]],[\"comment/29\",[]],[\"name/30\",[28,44.387]],[\"comment/30\",[]],[\"name/31\",[29,44.387]],[\"comment/31\",[]],[\"name/32\",[30,44.387]],[\"comment/32\",[]],[\"name/33\",[31,44.387]],[\"comment/33\",[]],[\"name/34\",[32,44.387]],[\"comment/34\",[]],[\"name/35\",[33,44.387]],[\"comment/35\",[]],[\"name/36\",[34,44.387]],[\"comment/36\",[]],[\"name/37\",[35,44.387]],[\"comment/37\",[]],[\"name/38\",[36,44.387]],[\"comment/38\",[]],[\"name/39\",[37,44.387]],[\"comment/39\",[]],[\"name/40\",[38,44.387]],[\"comment/40\",[]],[\"name/41\",[39,44.387]],[\"comment/41\",[]],[\"name/42\",[40,44.387]],[\"comment/42\",[]],[\"name/43\",[41,39.279]],[\"comment/43\",[]],[\"name/44\",[6,18.738]],[\"comment/44\",[]],[\"name/45\",[42,44.387]],[\"comment/45\",[]],[\"name/46\",[43,44.387]],[\"comment/46\",[]],[\"name/47\",[6,18.738]],[\"comment/47\",[]],[\"name/48\",[44,44.387]],[\"comment/48\",[]],[\"name/49\",[6,18.738]],[\"comment/49\",[]],[\"name/50\",[41,39.279]],[\"comment/50\",[]],[\"name/51\",[45,44.387]],[\"comment/51\",[]],[\"name/52\",[46,44.387]],[\"comment/52\",[]],[\"name/53\",[47,44.387]],[\"comment/53\",[]],[\"name/54\",[6,18.738]],[\"comment/54\",[]],[\"name/55\",[48,44.387]],[\"comment/55\",[]],[\"name/56\",[6,18.738]],[\"comment/56\",[]],[\"name/57\",[49,44.387]],[\"comment/57\",[]],[\"name/58\",[6,18.738]],[\"comment/58\",[]],[\"name/59\",[50,44.387]],[\"comment/59\",[]],[\"name/60\",[51,44.387]],[\"comment/60\",[]],[\"name/61\",[52,44.387]],[\"comment/61\",[]],[\"name/62\",[6,18.738]],[\"comment/62\",[]],[\"name/63\",[53,44.387]],[\"comment/63\",[]],[\"name/64\",[54,44.387]],[\"comment/64\",[]],[\"name/65\",[6,18.738]],[\"comment/65\",[]],[\"name/66\",[55,44.387]],[\"comment/66\",[]],[\"name/67\",[56,44.387]],[\"comment/67\",[]],[\"name/68\",[57,44.387]],[\"comment/68\",[]],[\"name/69\",[58,44.387]],[\"comment/69\",[]],[\"name/70\",[59,44.387]],[\"comment/70\",[]],[\"name/71\",[60,44.387]],[\"comment/71\",[]],[\"name/72\",[61,44.387]],[\"comment/72\",[]],[\"name/73\",[62,44.387]],[\"comment/73\",[]],[\"name/74\",[63,44.387]],[\"comment/74\",[]],[\"name/75\",[64,44.387]],[\"comment/75\",[]],[\"name/76\",[65,44.387]],[\"comment/76\",[]],[\"name/77\",[66,44.387]],[\"comment/77\",[]],[\"name/78\",[67,44.387]],[\"comment/78\",[]],[\"name/79\",[68,44.387]],[\"comment/79\",[]],[\"name/80\",[69,44.387]],[\"comment/80\",[]],[\"name/81\",[70,44.387]],[\"comment/81\",[]],[\"name/82\",[71,44.387]],[\"comment/82\",[]],[\"name/83\",[72,44.387]],[\"comment/83\",[]],[\"name/84\",[6,18.738]],[\"comment/84\",[]],[\"name/85\",[73,44.387]],[\"comment/85\",[]],[\"name/86\",[74,44.387]],[\"comment/86\",[]],[\"name/87\",[6,18.738]],[\"comment/87\",[]],[\"name/88\",[75,44.387]],[\"comment/88\",[]],[\"name/89\",[6,18.738]],[\"comment/89\",[]],[\"name/90\",[15,39.279]],[\"comment/90\",[]],[\"name/91\",[16,39.279]],[\"comment/91\",[]],[\"name/92\",[17,39.279]],[\"comment/92\",[]],[\"name/93\",[18,39.279]],[\"comment/93\",[]],[\"name/94\",[19,39.279]],[\"comment/94\",[]],[\"name/95\",[20,39.279]],[\"comment/95\",[]],[\"name/96\",[6,18.738]],[\"comment/96\",[]],[\"name/97\",[76,44.387]],[\"comment/97\",[]],[\"name/98\",[77,44.387]],[\"comment/98\",[]],[\"name/99\",[78,44.387]],[\"comment/99\",[]],[\"name/100\",[79,44.387]],[\"comment/100\",[]],[\"name/101\",[80,44.387]],[\"comment/101\",[]],[\"name/102\",[81,44.387]],[\"comment/102\",[]],[\"name/103\",[82,44.387]],[\"comment/103\",[]],[\"name/104\",[6,18.738]],[\"comment/104\",[]],[\"name/105\",[83,44.387]],[\"comment/105\",[]],[\"name/106\",[84,44.387]],[\"comment/106\",[]],[\"name/107\",[85,44.387]],[\"comment/107\",[]],[\"name/108\",[86,44.387]],[\"comment/108\",[]],[\"name/109\",[87,44.387]],[\"comment/109\",[]],[\"name/110\",[88,44.387]],[\"comment/110\",[]],[\"name/111\",[6,18.738]],[\"comment/111\",[]],[\"name/112\",[89,44.387]],[\"comment/112\",[]],[\"name/113\",[6,18.738]],[\"comment/113\",[]],[\"name/114\",[90,44.387]],[\"comment/114\",[]],[\"name/115\",[91,44.387]],[\"comment/115\",[]],[\"name/116\",[92,44.387]],[\"comment/116\",[]],[\"name/117\",[93,44.387]],[\"comment/117\",[]],[\"name/118\",[6,18.738]],[\"comment/118\",[]],[\"name/119\",[94,44.387]],[\"comment/119\",[]],[\"name/120\",[95,44.387]],[\"comment/120\",[]],[\"name/121\",[96,44.387]],[\"comment/121\",[]],[\"name/122\",[97,44.387]],[\"comment/122\",[]],[\"name/123\",[98,44.387]],[\"comment/123\",[]],[\"name/124\",[99,44.387]],[\"comment/124\",[]],[\"name/125\",[100,44.387]],[\"comment/125\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"15\":{},\"22\":{},\"44\":{},\"47\":{},\"49\":{},\"54\":{},\"56\":{},\"58\":{},\"62\":{},\"65\":{},\"84\":{},\"87\":{},\"89\":{},\"96\":{},\"104\":{},\"111\":{},\"113\":{},\"118\":{}},\"comment\":{}}],[\"allowexponents\",{\"_index\":36,\"name\":{\"38\":{}},\"comment\":{}}],[\"allowfloats\",{\"_index\":35,\"name\":{\"37\":{}},\"comment\":{}}],[\"allowinfinity\",{\"_index\":37,\"name\":{\"39\":{}},\"comment\":{}}],[\"allownan\",{\"_index\":38,\"name\":{\"40\":{}},\"comment\":{}}],[\"b\",{\"_index\":19,\"name\":{\"20\":{},\"94\":{}},\"comment\":{}}],[\"both\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":88,\"name\":{\"110\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":100,\"name\":{\"125\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"comparearrays\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"compareprops\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"comparepropsoptions\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"customdeserializers\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"customserializers\",{\"_index\":75,\"name\":{\"88\":{}},\"comment\":{}}],[\"deserialize\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":21,\"name\":{\"23\":{}},\"comment\":{}}],[\"ensuredate\",{\"_index\":22,\"name\":{\"24\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":23,\"name\":{\"25\":{}},\"comment\":{}}],[\"ensureprefix\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"ensuresuffix\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"ensuretimestamp\",{\"_index\":24,\"name\":{\"26\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":25,\"name\":{\"27\":{}},\"comment\":{}}],[\"flush\",{\"_index\":89,\"name\":{\"112\":{}},\"comment\":{}}],[\"formatdate\",{\"_index\":26,\"name\":{\"28\":{}},\"comment\":{}}],[\"get\",{\"_index\":27,\"name\":{\"29\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":29,\"name\":{\"31\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":30,\"name\":{\"32\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":28,\"name\":{\"30\":{}},\"comment\":{}}],[\"i\",{\"_index\":20,\"name\":{\"21\":{},\"95\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":99,\"name\":{\"124\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":32,\"name\":{\"34\":{}},\"comment\":{}}],[\"isnumericstring\",{\"_index\":33,\"name\":{\"35\":{}},\"comment\":{}}],[\"isnumericstringoptions\",{\"_index\":34,\"name\":{\"36\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":39,\"name\":{\"41\":{}},\"comment\":{}}],[\"l\",{\"_index\":18,\"name\":{\"19\":{},\"93\":{}},\"comment\":{}}],[\"last\",{\"_index\":40,\"name\":{\"42\":{}},\"comment\":{}}],[\"later\",{\"_index\":41,\"name\":{\"43\":{},\"50\":{}},\"comment\":{}}],[\"leading\",{\"_index\":91,\"name\":{\"115\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":45,\"name\":{\"51\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":46,\"name\":{\"52\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":48,\"name\":{\"55\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":47,\"name\":{\"53\":{}},\"comment\":{}}],[\"match\",{\"_index\":49,\"name\":{\"57\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":52,\"name\":{\"61\":{}},\"comment\":{}}],[\"matched\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"merge\",{\"_index\":53,\"name\":{\"63\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":54,\"name\":{\"64\":{}},\"comment\":{}}],[\"missingequalsundefined\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":55,\"name\":{\"66\":{}},\"comment\":{}}],[\"n\",{\"_index\":16,\"name\":{\"17\":{},\"91\":{}},\"comment\":{}}],[\"noop\",{\"_index\":56,\"name\":{\"67\":{}},\"comment\":{}}],[\"occurencesoptions\",{\"_index\":58,\"name\":{\"69\":{}},\"comment\":{}}],[\"occurrences\",{\"_index\":57,\"name\":{\"68\":{}},\"comment\":{}}],[\"omit\",{\"_index\":60,\"name\":{\"71\":{}},\"comment\":{}}],[\"onlya\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"onlyb\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"overlap\",{\"_index\":59,\"name\":{\"70\":{}},\"comment\":{}}],[\"pick\",{\"_index\":61,\"name\":{\"72\":{}},\"comment\":{}}],[\"promise\",{\"_index\":42,\"name\":{\"45\":{}},\"comment\":{}}],[\"pull\",{\"_index\":62,\"name\":{\"73\":{}},\"comment\":{}}],[\"reject\",{\"_index\":44,\"name\":{\"48\":{}},\"comment\":{}}],[\"remove\",{\"_index\":63,\"name\":{\"74\":{}},\"comment\":{}}],[\"removecommonproperties\",{\"_index\":64,\"name\":{\"75\":{}},\"comment\":{}}],[\"replace\",{\"_index\":65,\"name\":{\"76\":{}},\"comment\":{}}],[\"replacedeep\",{\"_index\":66,\"name\":{\"77\":{}},\"comment\":{}}],[\"resolve\",{\"_index\":43,\"name\":{\"46\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":67,\"name\":{\"78\":{}},\"comment\":{}}],[\"s\",{\"_index\":15,\"name\":{\"16\":{},\"90\":{}},\"comment\":{}}],[\"safe\",{\"_index\":68,\"name\":{\"79\":{}},\"comment\":{}}],[\"scale\",{\"_index\":69,\"name\":{\"80\":{}},\"comment\":{}}],[\"seq\",{\"_index\":70,\"name\":{\"81\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":71,\"name\":{\"82\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":72,\"name\":{\"83\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":74,\"name\":{\"86\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":73,\"name\":{\"85\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":76,\"name\":{\"97\":{}},\"comment\":{}}],[\"set\",{\"_index\":77,\"name\":{\"98\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":79,\"name\":{\"100\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":80,\"name\":{\"101\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":81,\"name\":{\"102\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":78,\"name\":{\"99\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":82,\"name\":{\"103\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":83,\"name\":{\"105\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":84,\"name\":{\"106\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":85,\"name\":{\"107\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":86,\"name\":{\"108\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":93,\"name\":{\"117\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":87,\"name\":{\"109\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":90,\"name\":{\"114\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":92,\"name\":{\"116\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":94,\"name\":{\"119\":{}},\"comment\":{}}],[\"u\",{\"_index\":17,\"name\":{\"18\":{},\"92\":{}},\"comment\":{}}],[\"unique\",{\"_index\":95,\"name\":{\"120\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"wait\",{\"_index\":96,\"name\":{\"121\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":97,\"name\":{\"122\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":98,\"name\":{\"123\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>cap | @ezez/utils - v1.8.1</title><meta name="description" content="Documentation for @ezez/utils - v1.8.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>cap | @ezez/utils - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.8.1</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.8.1</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
16
16
  <li><a href="cap.html">cap</a></li></ul>
17
17
  <h1>Function cap</h1></div>
18
18
  <section class="tsd-panel">
@@ -38,7 +38,7 @@
38
38
  </div></li></ul></div>
39
39
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
40
40
  <ul>
41
- <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/ff8c321/src/cap.ts#L7">cap.ts:7</a></li></ul></aside></li></ul></section></div>
41
+ <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/b5cd703/src/cap.ts#L7">cap.ts:7</a></li></ul></aside></li></ul></section></div>
42
42
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
43
43
  <div class="tsd-navigation settings">
44
44
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
@@ -58,7 +58,7 @@
58
58
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
59
59
  <div class="tsd-accordion-details">
60
60
  <ul>
61
- <li><a href="../modules.html">@ezez/utils -<wbr/> v1.8.1</a>
61
+ <li><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
62
62
  <ul>
63
63
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
64
64
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -73,7 +73,9 @@
73
73
  <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
74
74
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
75
75
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
76
- <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Later</a></li>
76
+ <li class="tsd-kind-type-alias"><a href="../types/CustomDeserializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Custom<wbr/>Deserializers</a></li>
77
+ <li class="tsd-kind-type-alias"><a href="../types/CustomSerializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Custom<wbr/>Serializers</a></li>
78
+ <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Later</a></li>
77
79
  <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Map<wbr/>Values<wbr/>Fn</a></li>
78
80
  <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
79
81
  <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
@@ -88,6 +90,7 @@
88
90
  <li class="tsd-kind-function"><a href="coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
89
91
  <li class="tsd-kind-function"><a href="compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
90
92
  <li class="tsd-kind-function"><a href="compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
93
+ <li class="tsd-kind-function"><a href="deserialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>deserialize</a></li>
91
94
  <li class="tsd-kind-function"><a href="ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
92
95
  <li class="tsd-kind-function"><a href="ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
93
96
  <li class="tsd-kind-function"><a href="ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
@@ -115,12 +118,15 @@
115
118
  <li class="tsd-kind-function"><a href="pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
116
119
  <li class="tsd-kind-function"><a href="pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
117
120
  <li class="tsd-kind-function"><a href="remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
121
+ <li class="tsd-kind-function"><a href="removeCommonProperties.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove<wbr/>Common<wbr/>Properties</a></li>
118
122
  <li class="tsd-kind-function"><a href="replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
123
+ <li class="tsd-kind-function"><a href="replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
119
124
  <li class="tsd-kind-function"><a href="rethrow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>rethrow</a></li>
120
125
  <li class="tsd-kind-function"><a href="safe.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>safe</a></li>
121
126
  <li class="tsd-kind-function"><a href="scale.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>scale</a></li>
122
127
  <li class="tsd-kind-function"><a href="seq.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq</a></li>
123
128
  <li class="tsd-kind-function"><a href="seqEarlyBreak.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq<wbr/>Early<wbr/>Break</a></li>
129
+ <li class="tsd-kind-function"><a href="serialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>serialize</a></li>
124
130
  <li class="tsd-kind-function"><a href="set.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set</a></li>
125
131
  <li class="tsd-kind-function"><a href="setImmutable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set<wbr/>Immutable</a></li>
126
132
  <li class="tsd-kind-function"><a href="sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>capitalize | @ezez/utils - v1.8.1</title><meta name="description" content="Documentation for @ezez/utils - v1.8.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>capitalize | @ezez/utils - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.8.1</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.8.1</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
16
16
  <li><a href="capitalize.html">capitalize</a></li></ul>
17
17
  <h1>Function capitalize</h1></div>
18
18
  <section class="tsd-panel">
@@ -43,7 +43,7 @@
43
43
  </div></li></ul></div>
44
44
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
45
45
  <ul>
46
- <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/ff8c321/src/capitalize.ts#L9">capitalize.ts:9</a></li></ul></aside></li></ul></section></div>
46
+ <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/b5cd703/src/capitalize.ts#L9">capitalize.ts:9</a></li></ul></aside></li></ul></section></div>
47
47
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
48
48
  <div class="tsd-navigation settings">
49
49
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
@@ -63,7 +63,7 @@
63
63
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
64
64
  <div class="tsd-accordion-details">
65
65
  <ul>
66
- <li><a href="../modules.html">@ezez/utils -<wbr/> v1.8.1</a>
66
+ <li><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
67
67
  <ul>
68
68
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
69
69
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -78,7 +78,9 @@
78
78
  <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
79
79
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
80
80
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
81
- <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Later</a></li>
81
+ <li class="tsd-kind-type-alias"><a href="../types/CustomDeserializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Custom<wbr/>Deserializers</a></li>
82
+ <li class="tsd-kind-type-alias"><a href="../types/CustomSerializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Custom<wbr/>Serializers</a></li>
83
+ <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Later</a></li>
82
84
  <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Map<wbr/>Values<wbr/>Fn</a></li>
83
85
  <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
84
86
  <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
@@ -93,6 +95,7 @@
93
95
  <li class="tsd-kind-function"><a href="coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
94
96
  <li class="tsd-kind-function"><a href="compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
95
97
  <li class="tsd-kind-function"><a href="compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
98
+ <li class="tsd-kind-function"><a href="deserialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>deserialize</a></li>
96
99
  <li class="tsd-kind-function"><a href="ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
97
100
  <li class="tsd-kind-function"><a href="ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
98
101
  <li class="tsd-kind-function"><a href="ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
@@ -120,12 +123,15 @@
120
123
  <li class="tsd-kind-function"><a href="pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
121
124
  <li class="tsd-kind-function"><a href="pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
122
125
  <li class="tsd-kind-function"><a href="remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
126
+ <li class="tsd-kind-function"><a href="removeCommonProperties.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove<wbr/>Common<wbr/>Properties</a></li>
123
127
  <li class="tsd-kind-function"><a href="replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
128
+ <li class="tsd-kind-function"><a href="replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
124
129
  <li class="tsd-kind-function"><a href="rethrow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>rethrow</a></li>
125
130
  <li class="tsd-kind-function"><a href="safe.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>safe</a></li>
126
131
  <li class="tsd-kind-function"><a href="scale.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>scale</a></li>
127
132
  <li class="tsd-kind-function"><a href="seq.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq</a></li>
128
133
  <li class="tsd-kind-function"><a href="seqEarlyBreak.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq<wbr/>Early<wbr/>Break</a></li>
134
+ <li class="tsd-kind-function"><a href="serialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>serialize</a></li>
129
135
  <li class="tsd-kind-function"><a href="set.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set</a></li>
130
136
  <li class="tsd-kind-function"><a href="setImmutable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set<wbr/>Immutable</a></li>
131
137
  <li class="tsd-kind-function"><a href="sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>coalesce | @ezez/utils - v1.8.1</title><meta name="description" content="Documentation for @ezez/utils - v1.8.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>coalesce | @ezez/utils - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.8.1</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.8.1</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
16
16
  <li><a href="coalesce.html">coalesce</a></li></ul>
17
17
  <h1>Function coalesce</h1></div>
18
18
  <section class="tsd-panel">
@@ -48,7 +48,7 @@
48
48
  </div></li></ul></div>
49
49
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">NonNullable</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
50
50
  <ul>
51
- <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/ff8c321/src/coalesce.ts#L11">coalesce.ts:11</a></li></ul></aside></li></ul></section></div>
51
+ <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/b5cd703/src/coalesce.ts#L11">coalesce.ts:11</a></li></ul></aside></li></ul></section></div>
52
52
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
53
53
  <div class="tsd-navigation settings">
54
54
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
@@ -68,7 +68,7 @@
68
68
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
69
69
  <div class="tsd-accordion-details">
70
70
  <ul>
71
- <li><a href="../modules.html">@ezez/utils -<wbr/> v1.8.1</a>
71
+ <li><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
72
72
  <ul>
73
73
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
74
74
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -83,7 +83,9 @@
83
83
  <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
84
84
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
85
85
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
86
- <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Later</a></li>
86
+ <li class="tsd-kind-type-alias"><a href="../types/CustomDeserializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Custom<wbr/>Deserializers</a></li>
87
+ <li class="tsd-kind-type-alias"><a href="../types/CustomSerializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Custom<wbr/>Serializers</a></li>
88
+ <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Later</a></li>
87
89
  <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Map<wbr/>Values<wbr/>Fn</a></li>
88
90
  <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
89
91
  <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
@@ -98,6 +100,7 @@
98
100
  <li class="current tsd-kind-function"><a href="coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
99
101
  <li class="tsd-kind-function"><a href="compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
100
102
  <li class="tsd-kind-function"><a href="compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
103
+ <li class="tsd-kind-function"><a href="deserialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>deserialize</a></li>
101
104
  <li class="tsd-kind-function"><a href="ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
102
105
  <li class="tsd-kind-function"><a href="ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
103
106
  <li class="tsd-kind-function"><a href="ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
@@ -125,12 +128,15 @@
125
128
  <li class="tsd-kind-function"><a href="pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
126
129
  <li class="tsd-kind-function"><a href="pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
127
130
  <li class="tsd-kind-function"><a href="remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
131
+ <li class="tsd-kind-function"><a href="removeCommonProperties.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove<wbr/>Common<wbr/>Properties</a></li>
128
132
  <li class="tsd-kind-function"><a href="replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
133
+ <li class="tsd-kind-function"><a href="replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
129
134
  <li class="tsd-kind-function"><a href="rethrow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>rethrow</a></li>
130
135
  <li class="tsd-kind-function"><a href="safe.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>safe</a></li>
131
136
  <li class="tsd-kind-function"><a href="scale.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>scale</a></li>
132
137
  <li class="tsd-kind-function"><a href="seq.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq</a></li>
133
138
  <li class="tsd-kind-function"><a href="seqEarlyBreak.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq<wbr/>Early<wbr/>Break</a></li>
139
+ <li class="tsd-kind-function"><a href="serialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>serialize</a></li>
134
140
  <li class="tsd-kind-function"><a href="set.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set</a></li>
135
141
  <li class="tsd-kind-function"><a href="setImmutable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set<wbr/>Immutable</a></li>
136
142
  <li class="tsd-kind-function"><a href="sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>