@ezez/utils 1.9.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -1
- package/README.md +4 -0
- package/dist/deserialize.d.ts +13 -0
- package/dist/deserialize.d.ts.map +1 -0
- package/dist/deserialize.js +42 -0
- package/dist/deserialize.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/omit.js +3 -1
- package/dist/omit.js.map +1 -1
- package/dist/replace.d.ts.map +1 -1
- package/dist/replace.js.map +1 -1
- package/dist/replaceDeep.d.ts +3 -0
- package/dist/replaceDeep.d.ts.map +1 -0
- package/dist/replaceDeep.js +26 -0
- package/dist/replaceDeep.js.map +1 -0
- package/dist/round.d.ts +3 -0
- package/dist/round.d.ts.map +1 -0
- package/dist/round.js +9 -0
- package/dist/round.js.map +1 -0
- package/dist/safe.d.ts.map +1 -1
- package/dist/safe.js +1 -1
- package/dist/safe.js.map +1 -1
- package/dist/serialize.d.ts +16 -0
- package/dist/serialize.d.ts.map +1 -0
- package/dist/serialize.js +61 -0
- package/dist/serialize.js.map +1 -0
- package/dist/setImmutable.js +1 -1
- package/dist/setImmutable.js.map +1 -1
- package/dist/sortBy.js +1 -2
- package/dist/sortBy.js.map +1 -1
- package/dist/sortProps.d.ts.map +1 -1
- package/dist/sortProps.js.map +1 -1
- package/dist/throttle.js +5 -7
- package/dist/throttle.js.map +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +12 -6
- package/docs/functions/capitalize.html +12 -6
- package/docs/functions/coalesce.html +12 -6
- package/docs/functions/compareArrays.html +12 -6
- package/docs/functions/compareProps.html +12 -6
- package/docs/functions/deserialize.html +149 -0
- package/docs/functions/ensureArray.html +12 -6
- package/docs/functions/ensureDate.html +12 -6
- package/docs/functions/ensureError.html +12 -6
- package/docs/functions/ensurePrefix.html +12 -6
- package/docs/functions/ensureSuffix.html +12 -6
- package/docs/functions/ensureTimestamp.html +12 -6
- package/docs/functions/escapeRegExp.html +12 -6
- package/docs/functions/formatDate.html +12 -6
- package/docs/functions/get.html +12 -6
- package/docs/functions/getMultiple.html +12 -6
- package/docs/functions/insertSeparator.html +12 -6
- package/docs/functions/isEmpty.html +12 -6
- package/docs/functions/isNumericString.html +12 -6
- package/docs/functions/isPlainObject.html +12 -6
- package/docs/functions/last.html +12 -6
- package/docs/functions/later-1.html +12 -6
- package/docs/functions/mapAsync.html +12 -6
- package/docs/functions/mapValues.html +12 -6
- package/docs/functions/match.html +12 -6
- package/docs/functions/merge.html +20 -14
- package/docs/functions/mostFrequent.html +12 -6
- package/docs/functions/noop.html +12 -6
- package/docs/functions/occurrences.html +12 -6
- package/docs/functions/omit.html +12 -6
- package/docs/functions/pick.html +12 -6
- package/docs/functions/pull.html +12 -6
- package/docs/functions/remove.html +12 -6
- package/docs/functions/removeCommonProperties.html +12 -6
- package/docs/functions/replace.html +12 -6
- package/docs/functions/replaceDeep.html +154 -0
- package/docs/functions/rethrow.html +12 -6
- package/docs/functions/round.html +144 -0
- package/docs/functions/safe.html +13 -7
- package/docs/functions/scale.html +12 -6
- package/docs/functions/seq.html +12 -6
- package/docs/functions/seqEarlyBreak.html +12 -6
- package/docs/functions/serialize.html +154 -0
- package/docs/functions/set.html +12 -6
- package/docs/functions/setImmutable.html +12 -6
- package/docs/functions/sortBy.html +12 -6
- package/docs/functions/sortProps.html +15 -7
- package/docs/functions/stripPrefix.html +12 -6
- package/docs/functions/stripSuffix.html +12 -6
- package/docs/functions/throttle.html +12 -6
- package/docs/functions/truthy.html +12 -6
- package/docs/functions/unique.html +12 -6
- package/docs/functions/wait.html +12 -6
- package/docs/functions/waitFor.html +12 -6
- package/docs/functions/waitSync.html +12 -6
- package/docs/index.html +15 -5
- package/docs/interfaces/ComparePropsOptions.html +6 -6
- package/docs/interfaces/GetMultipleSource.html +12 -6
- package/docs/interfaces/GetSource.html +12 -6
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +12 -6
- package/docs/interfaces/SetSource.html +12 -6
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +17 -5
- package/docs/pages/CHANGELOG.html +77 -39
- package/docs/pages/Introduction.html +11 -5
- package/docs/types/CustomDeserializers.html +152 -0
- package/docs/types/CustomSerializers.html +152 -0
- package/docs/types/Later.html +12 -6
- package/docs/types/MapValuesFn.html +12 -6
- package/docs/types/MatchCallback.html +12 -6
- package/docs/types/SeqEarlyBreaker.html +12 -6
- package/docs/types/SeqFn.html +12 -6
- package/docs/types/SeqFunctions.html +12 -6
- package/docs/types/SetImmutablePath.html +12 -6
- package/docs/types/ThrottledFunction.html +12 -6
- package/docs/variables/mapValuesUNSET.html +12 -6
- package/docs/variables/mergeUNSET.html +12 -6
- package/esm/deserialize.d.ts +13 -0
- package/esm/deserialize.d.ts.map +1 -0
- package/esm/deserialize.js +39 -0
- package/esm/deserialize.js.map +1 -0
- package/esm/index.d.ts +4 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +4 -0
- package/esm/index.js.map +1 -1
- package/esm/replace.d.ts.map +1 -1
- package/esm/replace.js.map +1 -1
- package/esm/replaceDeep.d.ts +3 -0
- package/esm/replaceDeep.d.ts.map +1 -0
- package/esm/replaceDeep.js +23 -0
- package/esm/replaceDeep.js.map +1 -0
- package/esm/round.d.ts +3 -0
- package/esm/round.d.ts.map +1 -0
- package/esm/round.js +6 -0
- package/esm/round.js.map +1 -0
- package/esm/safe.d.ts.map +1 -1
- package/esm/safe.js.map +1 -1
- package/esm/serialize.d.ts +16 -0
- package/esm/serialize.d.ts.map +1 -0
- package/esm/serialize.js +58 -0
- package/esm/serialize.js.map +1 -0
- package/esm/sortBy.js +1 -2
- package/esm/sortBy.js.map +1 -1
- package/esm/sortProps.d.ts.map +1 -1
- package/esm/sortProps.js.map +1 -1
- package/esm/throttle.js +5 -7
- package/esm/throttle.js.map +1 -1
- package/package.json +26 -25
- package/pnpm-lock.yaml +5223 -0
- package/src/deserialize.spec.ts +69 -0
- package/src/deserialize.ts +74 -0
- package/src/index.ts +4 -0
- package/src/replace.ts +0 -1
- package/src/replaceDeep.spec.ts +71 -0
- package/src/replaceDeep.ts +44 -0
- package/src/round.spec.ts +27 -0
- package/src/round.ts +21 -0
- package/src/safe.ts +0 -1
- package/src/serialize.spec.ts +83 -0
- package/src/serialize.ts +102 -0
- package/src/sortProps.ts +4 -1
- package/babel.config.cjs +0 -6
package/docs/assets/search.js
CHANGED
|
@@ -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\":\"removeCommonProperties\",\"url\":\"functions/removeCommonProperties.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.58]],[\"comment/0\",[]],[\"name/1\",[1,42.58]],[\"comment/1\",[]],[\"name/2\",[2,42.58]],[\"comment/2\",[]],[\"name/3\",[3,42.58]],[\"comment/3\",[]],[\"name/4\",[4,42.58]],[\"comment/4\",[]],[\"name/5\",[5,42.58]],[\"comment/5\",[]],[\"name/6\",[6,19.226]],[\"comment/6\",[]],[\"name/7\",[7,42.58]],[\"comment/7\",[]],[\"name/8\",[8,42.58]],[\"comment/8\",[]],[\"name/9\",[9,42.58]],[\"comment/9\",[]],[\"name/10\",[10,42.58]],[\"comment/10\",[]],[\"name/11\",[11,42.58]],[\"comment/11\",[]],[\"name/12\",[12,42.58]],[\"comment/12\",[]],[\"name/13\",[13,42.58]],[\"comment/13\",[]],[\"name/14\",[14,42.58]],[\"comment/14\",[]],[\"name/15\",[15,42.58]],[\"comment/15\",[]],[\"name/16\",[16,42.58]],[\"comment/16\",[]],[\"name/17\",[17,42.58]],[\"comment/17\",[]],[\"name/18\",[18,42.58]],[\"comment/18\",[]],[\"name/19\",[19,42.58]],[\"comment/19\",[]],[\"name/20\",[20,42.58]],[\"comment/20\",[]],[\"name/21\",[21,42.58]],[\"comment/21\",[]],[\"name/22\",[22,42.58]],[\"comment/22\",[]],[\"name/23\",[23,42.58]],[\"comment/23\",[]],[\"name/24\",[24,42.58]],[\"comment/24\",[]],[\"name/25\",[25,42.58]],[\"comment/25\",[]],[\"name/26\",[26,42.58]],[\"comment/26\",[]],[\"name/27\",[27,42.58]],[\"comment/27\",[]],[\"name/28\",[28,42.58]],[\"comment/28\",[]],[\"name/29\",[29,42.58]],[\"comment/29\",[]],[\"name/30\",[30,42.58]],[\"comment/30\",[]],[\"name/31\",[31,42.58]],[\"comment/31\",[]],[\"name/32\",[32,42.58]],[\"comment/32\",[]],[\"name/33\",[33,37.471]],[\"comment/33\",[]],[\"name/34\",[6,19.226]],[\"comment/34\",[]],[\"name/35\",[34,42.58]],[\"comment/35\",[]],[\"name/36\",[35,42.58]],[\"comment/36\",[]],[\"name/37\",[6,19.226]],[\"comment/37\",[]],[\"name/38\",[36,42.58]],[\"comment/38\",[]],[\"name/39\",[6,19.226]],[\"comment/39\",[]],[\"name/40\",[33,37.471]],[\"comment/40\",[]],[\"name/41\",[37,42.58]],[\"comment/41\",[]],[\"name/42\",[38,42.58]],[\"comment/42\",[]],[\"name/43\",[39,42.58]],[\"comment/43\",[]],[\"name/44\",[6,19.226]],[\"comment/44\",[]],[\"name/45\",[40,42.58]],[\"comment/45\",[]],[\"name/46\",[6,19.226]],[\"comment/46\",[]],[\"name/47\",[41,42.58]],[\"comment/47\",[]],[\"name/48\",[6,19.226]],[\"comment/48\",[]],[\"name/49\",[42,42.58]],[\"comment/49\",[]],[\"name/50\",[43,42.58]],[\"comment/50\",[]],[\"name/51\",[44,42.58]],[\"comment/51\",[]],[\"name/52\",[6,19.226]],[\"comment/52\",[]],[\"name/53\",[45,42.58]],[\"comment/53\",[]],[\"name/54\",[46,42.58]],[\"comment/54\",[]],[\"name/55\",[6,19.226]],[\"comment/55\",[]],[\"name/56\",[47,42.58]],[\"comment/56\",[]],[\"name/57\",[48,42.58]],[\"comment/57\",[]],[\"name/58\",[49,42.58]],[\"comment/58\",[]],[\"name/59\",[50,42.58]],[\"comment/59\",[]],[\"name/60\",[51,42.58]],[\"comment/60\",[]],[\"name/61\",[52,42.58]],[\"comment/61\",[]],[\"name/62\",[53,42.58]],[\"comment/62\",[]],[\"name/63\",[54,42.58]],[\"comment/63\",[]],[\"name/64\",[55,42.58]],[\"comment/64\",[]],[\"name/65\",[56,42.58]],[\"comment/65\",[]],[\"name/66\",[57,42.58]],[\"comment/66\",[]],[\"name/67\",[58,42.58]],[\"comment/67\",[]],[\"name/68\",[59,42.58]],[\"comment/68\",[]],[\"name/69\",[60,42.58]],[\"comment/69\",[]],[\"name/70\",[61,42.58]],[\"comment/70\",[]],[\"name/71\",[62,42.58]],[\"comment/71\",[]],[\"name/72\",[63,42.58]],[\"comment/72\",[]],[\"name/73\",[6,19.226]],[\"comment/73\",[]],[\"name/74\",[64,42.58]],[\"comment/74\",[]],[\"name/75\",[65,42.58]],[\"comment/75\",[]],[\"name/76\",[6,19.226]],[\"comment/76\",[]],[\"name/77\",[66,42.58]],[\"comment/77\",[]],[\"name/78\",[67,42.58]],[\"comment/78\",[]],[\"name/79\",[68,42.58]],[\"comment/79\",[]],[\"name/80\",[69,42.58]],[\"comment/80\",[]],[\"name/81\",[70,42.58]],[\"comment/81\",[]],[\"name/82\",[71,42.58]],[\"comment/82\",[]],[\"name/83\",[6,19.226]],[\"comment/83\",[]],[\"name/84\",[72,42.58]],[\"comment/84\",[]],[\"name/85\",[73,42.58]],[\"comment/85\",[]],[\"name/86\",[74,42.58]],[\"comment/86\",[]],[\"name/87\",[75,42.58]],[\"comment/87\",[]],[\"name/88\",[76,42.58]],[\"comment/88\",[]],[\"name/89\",[77,42.58]],[\"comment/89\",[]],[\"name/90\",[6,19.226]],[\"comment/90\",[]],[\"name/91\",[78,42.58]],[\"comment/91\",[]],[\"name/92\",[6,19.226]],[\"comment/92\",[]],[\"name/93\",[79,42.58]],[\"comment/93\",[]],[\"name/94\",[80,42.58]],[\"comment/94\",[]],[\"name/95\",[81,42.58]],[\"comment/95\",[]],[\"name/96\",[82,42.58]],[\"comment/96\",[]],[\"name/97\",[6,19.226]],[\"comment/97\",[]],[\"name/98\",[83,42.58]],[\"comment/98\",[]],[\"name/99\",[84,42.58]],[\"comment/99\",[]],[\"name/100\",[85,42.58]],[\"comment/100\",[]],[\"name/101\",[86,42.58]],[\"comment/101\",[]],[\"name/102\",[87,42.58]],[\"comment/102\",[]],[\"name/103\",[88,42.58]],[\"comment/103\",[]],[\"name/104\",[89,42.58]],[\"comment/104\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"34\":{},\"37\":{},\"39\":{},\"44\":{},\"46\":{},\"48\":{},\"52\":{},\"55\":{},\"73\":{},\"76\":{},\"83\":{},\"90\":{},\"92\":{},\"97\":{}},\"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\":77,\"name\":{\"89\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":89,\"name\":{\"104\":{}},\"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\":78,\"name\":{\"91\":{}},\"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\":88,\"name\":{\"103\":{}},\"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\":80,\"name\":{\"94\":{}},\"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\":{}}],[\"removecommonproperties\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"replace\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"resolve\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"safe\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"scale\",{\"_index\":60,\"name\":{\"69\":{}},\"comment\":{}}],[\"seq\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":63,\"name\":{\"72\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":65,\"name\":{\"75\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":64,\"name\":{\"74\":{}},\"comment\":{}}],[\"set\",{\"_index\":66,\"name\":{\"77\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":68,\"name\":{\"79\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":69,\"name\":{\"80\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":70,\"name\":{\"81\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":67,\"name\":{\"78\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":71,\"name\":{\"82\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":72,\"name\":{\"84\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":73,\"name\":{\"85\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":74,\"name\":{\"86\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":75,\"name\":{\"87\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":82,\"name\":{\"96\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":76,\"name\":{\"88\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":79,\"name\":{\"93\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":81,\"name\":{\"95\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":83,\"name\":{\"98\":{}},\"comment\":{}}],[\"unique\",{\"_index\":84,\"name\":{\"99\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":43,\"name\":{\"50\":{}},\"comment\":{}}],[\"wait\",{\"_index\":85,\"name\":{\"100\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":86,\"name\":{\"101\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":87,\"name\":{\"102\":{}},\"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\":\"round\",\"url\":\"functions/round.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.466]],[\"comment/0\",[]],[\"name/1\",[1,44.466]],[\"comment/1\",[]],[\"name/2\",[2,44.466]],[\"comment/2\",[]],[\"name/3\",[3,44.466]],[\"comment/3\",[]],[\"name/4\",[4,44.466]],[\"comment/4\",[]],[\"name/5\",[5,44.466]],[\"comment/5\",[]],[\"name/6\",[6,18.816]],[\"comment/6\",[]],[\"name/7\",[7,44.466]],[\"comment/7\",[]],[\"name/8\",[8,44.466]],[\"comment/8\",[]],[\"name/9\",[9,44.466]],[\"comment/9\",[]],[\"name/10\",[10,44.466]],[\"comment/10\",[]],[\"name/11\",[11,44.466]],[\"comment/11\",[]],[\"name/12\",[12,44.466]],[\"comment/12\",[]],[\"name/13\",[13,44.466]],[\"comment/13\",[]],[\"name/14\",[14,44.466]],[\"comment/14\",[]],[\"name/15\",[6,18.816]],[\"comment/15\",[]],[\"name/16\",[15,39.357]],[\"comment/16\",[]],[\"name/17\",[16,39.357]],[\"comment/17\",[]],[\"name/18\",[17,39.357]],[\"comment/18\",[]],[\"name/19\",[18,39.357]],[\"comment/19\",[]],[\"name/20\",[19,39.357]],[\"comment/20\",[]],[\"name/21\",[20,39.357]],[\"comment/21\",[]],[\"name/22\",[6,18.816]],[\"comment/22\",[]],[\"name/23\",[21,44.466]],[\"comment/23\",[]],[\"name/24\",[22,44.466]],[\"comment/24\",[]],[\"name/25\",[23,44.466]],[\"comment/25\",[]],[\"name/26\",[24,44.466]],[\"comment/26\",[]],[\"name/27\",[25,44.466]],[\"comment/27\",[]],[\"name/28\",[26,44.466]],[\"comment/28\",[]],[\"name/29\",[27,44.466]],[\"comment/29\",[]],[\"name/30\",[28,44.466]],[\"comment/30\",[]],[\"name/31\",[29,44.466]],[\"comment/31\",[]],[\"name/32\",[30,44.466]],[\"comment/32\",[]],[\"name/33\",[31,44.466]],[\"comment/33\",[]],[\"name/34\",[32,44.466]],[\"comment/34\",[]],[\"name/35\",[33,44.466]],[\"comment/35\",[]],[\"name/36\",[34,44.466]],[\"comment/36\",[]],[\"name/37\",[35,44.466]],[\"comment/37\",[]],[\"name/38\",[36,44.466]],[\"comment/38\",[]],[\"name/39\",[37,44.466]],[\"comment/39\",[]],[\"name/40\",[38,44.466]],[\"comment/40\",[]],[\"name/41\",[39,44.466]],[\"comment/41\",[]],[\"name/42\",[40,44.466]],[\"comment/42\",[]],[\"name/43\",[41,39.357]],[\"comment/43\",[]],[\"name/44\",[6,18.816]],[\"comment/44\",[]],[\"name/45\",[42,44.466]],[\"comment/45\",[]],[\"name/46\",[43,44.466]],[\"comment/46\",[]],[\"name/47\",[6,18.816]],[\"comment/47\",[]],[\"name/48\",[44,44.466]],[\"comment/48\",[]],[\"name/49\",[6,18.816]],[\"comment/49\",[]],[\"name/50\",[41,39.357]],[\"comment/50\",[]],[\"name/51\",[45,44.466]],[\"comment/51\",[]],[\"name/52\",[46,44.466]],[\"comment/52\",[]],[\"name/53\",[47,44.466]],[\"comment/53\",[]],[\"name/54\",[6,18.816]],[\"comment/54\",[]],[\"name/55\",[48,44.466]],[\"comment/55\",[]],[\"name/56\",[6,18.816]],[\"comment/56\",[]],[\"name/57\",[49,44.466]],[\"comment/57\",[]],[\"name/58\",[6,18.816]],[\"comment/58\",[]],[\"name/59\",[50,44.466]],[\"comment/59\",[]],[\"name/60\",[51,44.466]],[\"comment/60\",[]],[\"name/61\",[52,44.466]],[\"comment/61\",[]],[\"name/62\",[6,18.816]],[\"comment/62\",[]],[\"name/63\",[53,44.466]],[\"comment/63\",[]],[\"name/64\",[54,44.466]],[\"comment/64\",[]],[\"name/65\",[6,18.816]],[\"comment/65\",[]],[\"name/66\",[55,44.466]],[\"comment/66\",[]],[\"name/67\",[56,44.466]],[\"comment/67\",[]],[\"name/68\",[57,44.466]],[\"comment/68\",[]],[\"name/69\",[58,44.466]],[\"comment/69\",[]],[\"name/70\",[59,44.466]],[\"comment/70\",[]],[\"name/71\",[60,44.466]],[\"comment/71\",[]],[\"name/72\",[61,44.466]],[\"comment/72\",[]],[\"name/73\",[62,44.466]],[\"comment/73\",[]],[\"name/74\",[63,44.466]],[\"comment/74\",[]],[\"name/75\",[64,44.466]],[\"comment/75\",[]],[\"name/76\",[65,44.466]],[\"comment/76\",[]],[\"name/77\",[66,44.466]],[\"comment/77\",[]],[\"name/78\",[67,44.466]],[\"comment/78\",[]],[\"name/79\",[68,44.466]],[\"comment/79\",[]],[\"name/80\",[69,44.466]],[\"comment/80\",[]],[\"name/81\",[70,44.466]],[\"comment/81\",[]],[\"name/82\",[71,44.466]],[\"comment/82\",[]],[\"name/83\",[72,44.466]],[\"comment/83\",[]],[\"name/84\",[73,44.466]],[\"comment/84\",[]],[\"name/85\",[6,18.816]],[\"comment/85\",[]],[\"name/86\",[74,44.466]],[\"comment/86\",[]],[\"name/87\",[75,44.466]],[\"comment/87\",[]],[\"name/88\",[6,18.816]],[\"comment/88\",[]],[\"name/89\",[76,44.466]],[\"comment/89\",[]],[\"name/90\",[6,18.816]],[\"comment/90\",[]],[\"name/91\",[15,39.357]],[\"comment/91\",[]],[\"name/92\",[16,39.357]],[\"comment/92\",[]],[\"name/93\",[17,39.357]],[\"comment/93\",[]],[\"name/94\",[18,39.357]],[\"comment/94\",[]],[\"name/95\",[19,39.357]],[\"comment/95\",[]],[\"name/96\",[20,39.357]],[\"comment/96\",[]],[\"name/97\",[6,18.816]],[\"comment/97\",[]],[\"name/98\",[77,44.466]],[\"comment/98\",[]],[\"name/99\",[78,44.466]],[\"comment/99\",[]],[\"name/100\",[79,44.466]],[\"comment/100\",[]],[\"name/101\",[80,44.466]],[\"comment/101\",[]],[\"name/102\",[81,44.466]],[\"comment/102\",[]],[\"name/103\",[82,44.466]],[\"comment/103\",[]],[\"name/104\",[83,44.466]],[\"comment/104\",[]],[\"name/105\",[6,18.816]],[\"comment/105\",[]],[\"name/106\",[84,44.466]],[\"comment/106\",[]],[\"name/107\",[85,44.466]],[\"comment/107\",[]],[\"name/108\",[86,44.466]],[\"comment/108\",[]],[\"name/109\",[87,44.466]],[\"comment/109\",[]],[\"name/110\",[88,44.466]],[\"comment/110\",[]],[\"name/111\",[89,44.466]],[\"comment/111\",[]],[\"name/112\",[6,18.816]],[\"comment/112\",[]],[\"name/113\",[90,44.466]],[\"comment/113\",[]],[\"name/114\",[6,18.816]],[\"comment/114\",[]],[\"name/115\",[91,44.466]],[\"comment/115\",[]],[\"name/116\",[92,44.466]],[\"comment/116\",[]],[\"name/117\",[93,44.466]],[\"comment/117\",[]],[\"name/118\",[94,44.466]],[\"comment/118\",[]],[\"name/119\",[6,18.816]],[\"comment/119\",[]],[\"name/120\",[95,44.466]],[\"comment/120\",[]],[\"name/121\",[96,44.466]],[\"comment/121\",[]],[\"name/122\",[97,44.466]],[\"comment/122\",[]],[\"name/123\",[98,44.466]],[\"comment/123\",[]],[\"name/124\",[99,44.466]],[\"comment/124\",[]],[\"name/125\",[100,44.466]],[\"comment/125\",[]],[\"name/126\",[101,44.466]],[\"comment/126\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"15\":{},\"22\":{},\"44\":{},\"47\":{},\"49\":{},\"54\":{},\"56\":{},\"58\":{},\"62\":{},\"65\":{},\"85\":{},\"88\":{},\"90\":{},\"97\":{},\"105\":{},\"112\":{},\"114\":{},\"119\":{}},\"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\":{},\"95\":{}},\"comment\":{}}],[\"both\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":89,\"name\":{\"111\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":101,\"name\":{\"126\":{}},\"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\":76,\"name\":{\"89\":{}},\"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\":90,\"name\":{\"113\":{}},\"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\":{},\"96\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":100,\"name\":{\"125\":{}},\"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\":{},\"94\":{}},\"comment\":{}}],[\"last\",{\"_index\":40,\"name\":{\"42\":{}},\"comment\":{}}],[\"later\",{\"_index\":41,\"name\":{\"43\":{},\"50\":{}},\"comment\":{}}],[\"leading\",{\"_index\":92,\"name\":{\"116\":{}},\"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\":{},\"92\":{}},\"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\":{}}],[\"round\",{\"_index\":68,\"name\":{\"79\":{}},\"comment\":{}}],[\"s\",{\"_index\":15,\"name\":{\"16\":{},\"91\":{}},\"comment\":{}}],[\"safe\",{\"_index\":69,\"name\":{\"80\":{}},\"comment\":{}}],[\"scale\",{\"_index\":70,\"name\":{\"81\":{}},\"comment\":{}}],[\"seq\",{\"_index\":71,\"name\":{\"82\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":72,\"name\":{\"83\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":73,\"name\":{\"84\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":75,\"name\":{\"87\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":74,\"name\":{\"86\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":77,\"name\":{\"98\":{}},\"comment\":{}}],[\"set\",{\"_index\":78,\"name\":{\"99\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":80,\"name\":{\"101\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":81,\"name\":{\"102\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":82,\"name\":{\"103\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":79,\"name\":{\"100\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":83,\"name\":{\"104\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":84,\"name\":{\"106\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":85,\"name\":{\"107\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":86,\"name\":{\"108\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":87,\"name\":{\"109\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":94,\"name\":{\"118\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":88,\"name\":{\"110\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":91,\"name\":{\"115\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":93,\"name\":{\"117\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":95,\"name\":{\"120\":{}},\"comment\":{}}],[\"u\",{\"_index\":17,\"name\":{\"18\":{},\"93\":{}},\"comment\":{}}],[\"unique\",{\"_index\":96,\"name\":{\"121\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"wait\",{\"_index\":97,\"name\":{\"122\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":98,\"name\":{\"123\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":99,\"name\":{\"124\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
package/docs/functions/cap.html
CHANGED
|
@@ -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 -
|
|
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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v2.1.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 -
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.1.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 -
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v2.1.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/
|
|
41
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/26ba3e6/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/>
|
|
61
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v2.1.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/
|
|
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>
|
|
@@ -117,11 +120,14 @@
|
|
|
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>
|
|
118
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>
|
|
119
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>
|
|
120
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>
|
|
125
|
+
<li class="tsd-kind-function"><a href="round.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>round</a></li>
|
|
121
126
|
<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>
|
|
122
127
|
<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>
|
|
123
128
|
<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>
|
|
124
129
|
<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>
|
|
130
|
+
<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>
|
|
125
131
|
<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>
|
|
126
132
|
<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>
|
|
127
133
|
<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 -
|
|
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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v2.1.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 -
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.1.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 -
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v2.1.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/
|
|
46
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/26ba3e6/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/>
|
|
66
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v2.1.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/
|
|
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>
|
|
@@ -122,11 +125,14 @@
|
|
|
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>
|
|
123
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>
|
|
124
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>
|
|
125
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>
|
|
130
|
+
<li class="tsd-kind-function"><a href="round.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>round</a></li>
|
|
126
131
|
<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>
|
|
127
132
|
<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>
|
|
128
133
|
<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>
|
|
129
134
|
<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>
|
|
135
|
+
<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>
|
|
130
136
|
<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>
|
|
131
137
|
<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>
|
|
132
138
|
<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 -
|
|
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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v2.1.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 -
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.1.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 -
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v2.1.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"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
50
50
|
<ul>
|
|
51
|
-
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/
|
|
51
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/26ba3e6/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/>
|
|
71
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v2.1.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/
|
|
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>
|
|
@@ -127,11 +130,14 @@
|
|
|
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>
|
|
128
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>
|
|
129
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>
|
|
130
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>
|
|
135
|
+
<li class="tsd-kind-function"><a href="round.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>round</a></li>
|
|
131
136
|
<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>
|
|
132
137
|
<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>
|
|
133
138
|
<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>
|
|
134
139
|
<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>
|
|
140
|
+
<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>
|
|
135
141
|
<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>
|
|
136
142
|
<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>
|
|
137
143
|
<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>
|