@ezez/utils 2.1.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/index.d.ts +7 -0
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +7 -0
  5. package/dist/index.js.map +1 -1
  6. package/dist/omit.d.ts +1 -1
  7. package/dist/omit.d.ts.map +1 -1
  8. package/dist/omit.js.map +1 -1
  9. package/dist/replace.d.ts.map +1 -1
  10. package/dist/replace.js.map +1 -1
  11. package/dist/replaceDeep.d.ts +5 -1
  12. package/dist/replaceDeep.d.ts.map +1 -1
  13. package/dist/replaceDeep.js +3 -20
  14. package/dist/replaceDeep.js.map +1 -1
  15. package/dist/replaceDeepByFn.d.ts +7 -0
  16. package/dist/replaceDeepByFn.d.ts.map +1 -0
  17. package/dist/replaceDeepByFn.js +47 -0
  18. package/dist/replaceDeepByFn.js.map +1 -0
  19. package/dist/safe.d.ts.map +1 -1
  20. package/dist/safe.js.map +1 -1
  21. package/dist/sample.d.ts +3 -0
  22. package/dist/sample.d.ts.map +1 -0
  23. package/dist/sample.js +8 -0
  24. package/dist/sample.js.map +1 -0
  25. package/dist/samples.d.ts +3 -0
  26. package/dist/samples.d.ts.map +1 -0
  27. package/dist/samples.js +28 -0
  28. package/dist/samples.js.map +1 -0
  29. package/dist/serialize.d.ts.map +1 -1
  30. package/dist/serialize.js +56 -18
  31. package/dist/serialize.js.map +1 -1
  32. package/dist/shuffle.d.ts +3 -0
  33. package/dist/shuffle.d.ts.map +1 -0
  34. package/dist/shuffle.js +9 -0
  35. package/dist/shuffle.js.map +1 -0
  36. package/dist/toggle.d.ts +3 -0
  37. package/dist/toggle.d.ts.map +1 -0
  38. package/dist/toggle.js +15 -0
  39. package/dist/toggle.js.map +1 -0
  40. package/dist/trim.d.ts +3 -0
  41. package/dist/trim.d.ts.map +1 -0
  42. package/dist/trim.js +10 -0
  43. package/dist/trim.js.map +1 -0
  44. package/dist/trimEnd.d.ts +3 -0
  45. package/dist/trimEnd.d.ts.map +1 -0
  46. package/dist/trimEnd.js +12 -0
  47. package/dist/trimEnd.js.map +1 -0
  48. package/dist/trimStart.d.ts +3 -0
  49. package/dist/trimStart.d.ts.map +1 -0
  50. package/dist/trimStart.js +12 -0
  51. package/dist/trimStart.js.map +1 -0
  52. package/dist/utils/utils.d.ts +6 -0
  53. package/dist/utils/utils.d.ts.map +1 -0
  54. package/dist/utils/utils.js +10 -0
  55. package/dist/utils/utils.js.map +1 -0
  56. package/dist/waitFor.d.ts +7 -1
  57. package/dist/waitFor.d.ts.map +1 -1
  58. package/dist/waitFor.js +35 -10
  59. package/dist/waitFor.js.map +1 -1
  60. package/docs/assets/search.js +1 -1
  61. package/docs/functions/cap.html +12 -5
  62. package/docs/functions/capitalize.html +12 -5
  63. package/docs/functions/coalesce.html +12 -5
  64. package/docs/functions/compareArrays.html +12 -5
  65. package/docs/functions/compareProps.html +12 -5
  66. package/docs/functions/deserialize.html +12 -5
  67. package/docs/functions/ensureArray.html +12 -5
  68. package/docs/functions/ensureDate.html +12 -5
  69. package/docs/functions/ensureError.html +12 -5
  70. package/docs/functions/ensurePrefix.html +12 -5
  71. package/docs/functions/ensureSuffix.html +12 -5
  72. package/docs/functions/ensureTimestamp.html +12 -5
  73. package/docs/functions/escapeRegExp.html +12 -5
  74. package/docs/functions/formatDate.html +12 -5
  75. package/docs/functions/get.html +12 -5
  76. package/docs/functions/getMultiple.html +12 -5
  77. package/docs/functions/insertSeparator.html +12 -5
  78. package/docs/functions/isEmpty.html +12 -5
  79. package/docs/functions/isNumericString.html +12 -5
  80. package/docs/functions/isPlainObject.html +12 -5
  81. package/docs/functions/last.html +12 -5
  82. package/docs/functions/later-1.html +12 -5
  83. package/docs/functions/mapAsync.html +12 -5
  84. package/docs/functions/mapValues.html +12 -5
  85. package/docs/functions/match.html +12 -5
  86. package/docs/functions/merge.html +20 -13
  87. package/docs/functions/mostFrequent.html +12 -5
  88. package/docs/functions/noop.html +12 -5
  89. package/docs/functions/occurrences.html +12 -5
  90. package/docs/functions/omit.html +18 -7
  91. package/docs/functions/pick.html +13 -6
  92. package/docs/functions/pull.html +12 -5
  93. package/docs/functions/remove.html +12 -5
  94. package/docs/functions/removeCommonProperties.html +12 -5
  95. package/docs/functions/replace.html +12 -5
  96. package/docs/functions/replaceDeep.html +23 -7
  97. package/docs/functions/rethrow.html +12 -5
  98. package/docs/functions/round.html +12 -5
  99. package/docs/functions/safe.html +13 -6
  100. package/docs/functions/sample.html +149 -0
  101. package/docs/functions/samples.html +159 -0
  102. package/docs/functions/scale.html +12 -5
  103. package/docs/functions/seq.html +12 -5
  104. package/docs/functions/seqEarlyBreak.html +12 -5
  105. package/docs/functions/serialize.html +12 -5
  106. package/docs/functions/set.html +12 -5
  107. package/docs/functions/setImmutable.html +12 -5
  108. package/docs/functions/shuffle.html +149 -0
  109. package/docs/functions/sortBy.html +12 -5
  110. package/docs/functions/sortProps.html +12 -5
  111. package/docs/functions/stripPrefix.html +12 -5
  112. package/docs/functions/stripSuffix.html +12 -5
  113. package/docs/functions/throttle.html +12 -5
  114. package/docs/functions/toggle.html +154 -0
  115. package/docs/functions/trim.html +152 -0
  116. package/docs/functions/trimEnd.html +152 -0
  117. package/docs/functions/trimStart.html +152 -0
  118. package/docs/functions/truthy.html +12 -5
  119. package/docs/functions/unique.html +12 -5
  120. package/docs/functions/wait.html +12 -5
  121. package/docs/functions/waitFor.html +23 -18
  122. package/docs/functions/waitSync.html +12 -5
  123. package/docs/index.html +11 -4
  124. package/docs/interfaces/ComparePropsOptions.html +6 -6
  125. package/docs/interfaces/GetMultipleSource.html +12 -5
  126. package/docs/interfaces/GetSource.html +12 -5
  127. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  128. package/docs/interfaces/OccurencesOptions.html +6 -6
  129. package/docs/interfaces/SetImmutableSource.html +12 -5
  130. package/docs/interfaces/SetSource.html +12 -5
  131. package/docs/interfaces/ThrottleOptions.html +7 -7
  132. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  133. package/docs/modules.html +18 -4
  134. package/docs/pages/CHANGELOG.html +150 -61
  135. package/docs/pages/Introduction.html +11 -4
  136. package/docs/types/CustomDeserializers.html +12 -5
  137. package/docs/types/CustomSerializers.html +12 -5
  138. package/docs/types/Later.html +12 -5
  139. package/docs/types/MapValuesFn.html +12 -5
  140. package/docs/types/MatchCallback.html +12 -5
  141. package/docs/types/SeqEarlyBreaker.html +12 -5
  142. package/docs/types/SeqFn.html +12 -5
  143. package/docs/types/SeqFunctions.html +12 -5
  144. package/docs/types/SetImmutablePath.html +12 -5
  145. package/docs/types/ThrottledFunction.html +12 -5
  146. package/docs/variables/mapValuesUNSET.html +12 -5
  147. package/docs/variables/mergeUNSET.html +12 -5
  148. package/esm/index.d.ts +7 -0
  149. package/esm/index.d.ts.map +1 -1
  150. package/esm/index.js +7 -0
  151. package/esm/index.js.map +1 -1
  152. package/esm/omit.d.ts +1 -1
  153. package/esm/omit.d.ts.map +1 -1
  154. package/esm/omit.js.map +1 -1
  155. package/esm/replace.d.ts.map +1 -1
  156. package/esm/replace.js.map +1 -1
  157. package/esm/replaceDeep.d.ts +5 -1
  158. package/esm/replaceDeep.d.ts.map +1 -1
  159. package/esm/replaceDeep.js +3 -20
  160. package/esm/replaceDeep.js.map +1 -1
  161. package/esm/replaceDeepByFn.d.ts +7 -0
  162. package/esm/replaceDeepByFn.d.ts.map +1 -0
  163. package/esm/replaceDeepByFn.js +44 -0
  164. package/esm/replaceDeepByFn.js.map +1 -0
  165. package/esm/safe.d.ts.map +1 -1
  166. package/esm/safe.js.map +1 -1
  167. package/esm/sample.d.ts +3 -0
  168. package/esm/sample.d.ts.map +1 -0
  169. package/esm/sample.js +5 -0
  170. package/esm/sample.js.map +1 -0
  171. package/esm/samples.d.ts +3 -0
  172. package/esm/samples.d.ts.map +1 -0
  173. package/esm/samples.js +25 -0
  174. package/esm/samples.js.map +1 -0
  175. package/esm/serialize.d.ts.map +1 -1
  176. package/esm/serialize.js +56 -18
  177. package/esm/serialize.js.map +1 -1
  178. package/esm/shuffle.d.ts +3 -0
  179. package/esm/shuffle.d.ts.map +1 -0
  180. package/esm/shuffle.js +6 -0
  181. package/esm/shuffle.js.map +1 -0
  182. package/esm/toggle.d.ts +3 -0
  183. package/esm/toggle.d.ts.map +1 -0
  184. package/esm/toggle.js +12 -0
  185. package/esm/toggle.js.map +1 -0
  186. package/esm/trim.d.ts +3 -0
  187. package/esm/trim.d.ts.map +1 -0
  188. package/esm/trim.js +7 -0
  189. package/esm/trim.js.map +1 -0
  190. package/esm/trimEnd.d.ts +3 -0
  191. package/esm/trimEnd.d.ts.map +1 -0
  192. package/esm/trimEnd.js +9 -0
  193. package/esm/trimEnd.js.map +1 -0
  194. package/esm/trimStart.d.ts +3 -0
  195. package/esm/trimStart.d.ts.map +1 -0
  196. package/esm/trimStart.js +9 -0
  197. package/esm/trimStart.js.map +1 -0
  198. package/esm/utils/utils.d.ts +6 -0
  199. package/esm/utils/utils.d.ts.map +1 -0
  200. package/esm/utils/utils.js +7 -0
  201. package/esm/utils/utils.js.map +1 -0
  202. package/esm/waitFor.d.ts +7 -1
  203. package/esm/waitFor.d.ts.map +1 -1
  204. package/esm/waitFor.js +35 -10
  205. package/esm/waitFor.js.map +1 -1
  206. package/package.json +4 -4
  207. package/pnpm-lock.yaml +1162 -986
  208. package/src/deserialize.spec.ts +12 -0
  209. package/src/index.ts +7 -0
  210. package/src/omit.ts +8 -2
  211. package/src/pick.ts +1 -1
  212. package/src/replace.ts +0 -1
  213. package/src/replaceDeep.spec.ts +91 -0
  214. package/src/replaceDeep.ts +22 -27
  215. package/src/replaceDeepByFn.spec.ts +162 -0
  216. package/src/replaceDeepByFn.ts +93 -0
  217. package/src/safe.ts +0 -1
  218. package/src/sample.spec.ts +31 -0
  219. package/src/sample.ts +11 -0
  220. package/src/samples.spec.ts +50 -0
  221. package/src/samples.ts +41 -0
  222. package/src/serialize.spec.ts +42 -0
  223. package/src/serialize.ts +65 -18
  224. package/src/shuffle.spec.ts +39 -0
  225. package/src/shuffle.ts +13 -0
  226. package/src/toggle.spec.ts +43 -0
  227. package/src/toggle.ts +22 -0
  228. package/src/trim.spec.ts +22 -0
  229. package/src/trim.ts +23 -0
  230. package/src/trimEnd.spec.ts +20 -0
  231. package/src/trimEnd.ts +22 -0
  232. package/src/trimStart.spec.ts +20 -0
  233. package/src/trimStart.ts +22 -0
  234. package/src/utils/utils.ts +11 -0
  235. package/src/waitFor.spec.ts +141 -0
  236. package/src/waitFor.ts +69 -18
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataWrapper = void 0;
4
+ class DataWrapper {
5
+ constructor(data) {
6
+ this.data = data;
7
+ }
8
+ }
9
+ exports.DataWrapper = DataWrapper;
10
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils/utils.ts"],"names":[],"mappings":";;;AAAA,MAAM,WAAW;IAGb,YAAmB,IAAO;QACtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACrB,CAAC;CACJ;AAGG,kCAAW"}
package/dist/waitFor.d.ts CHANGED
@@ -1,3 +1,9 @@
1
- declare const waitFor: <T>(fn: () => T, interval?: number, timeout?: number) => Promise<T>;
1
+ type MaybePromise<T> = T | Promise<T>;
2
+ type Options = {
3
+ interval?: number;
4
+ timeout?: number;
5
+ maxTries?: number;
6
+ };
7
+ declare const waitFor: <T>(fn: () => MaybePromise<T>, options?: Options) => Promise<T>;
2
8
  export { waitFor };
3
9
  //# sourceMappingURL=waitFor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"waitFor.d.ts","sourceRoot":"","sources":["../src/waitFor.ts"],"names":[],"mappings":"AAcA,QAAA,MAAM,OAAO,qEA8BZ,CAAC;AAEF,OAAO,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"waitFor.d.ts","sourceRoot":"","sources":["../src/waitFor.ts"],"names":[],"mappings":"AAKA,KAAK,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;AAEtC,KAAK,OAAO,GAAG;IAIX,QAAQ,CAAC,EAAE,MAAM,CAAC;IAIlB,OAAO,CAAC,EAAE,MAAM,CAAC;IAIjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAqBF,QAAA,MAAM,OAAO,2CAA2C,OAAO,eAsD9D,CAAC;AAEF,OAAO,EAAE,OAAO,EAAE,CAAC"}
package/dist/waitFor.js CHANGED
@@ -1,33 +1,58 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.waitFor = void 0;
4
+ const noop_js_1 = require("./noop.js");
4
5
  const DEFAULT_INTERVAL = 50;
5
- const waitFor = (fn, interval = DEFAULT_INTERVAL, timeout = Infinity) => {
6
+ const defaultOptions = {
7
+ interval: DEFAULT_INTERVAL,
8
+ timeout: Infinity,
9
+ maxTries: Infinity,
10
+ };
11
+ const waitFor = (fn, options = defaultOptions) => {
6
12
  return new Promise((resolve, reject) => {
7
13
  let intervalTimer, failTimer;
8
- if (isFinite(timeout)) {
14
+ const opts = { ...defaultOptions, ...options };
15
+ if (typeof opts.maxTries === "number" && opts.maxTries < 1) {
16
+ reject(new TypeError("[waitFor] maxTries must be greater than 0"));
17
+ return;
18
+ }
19
+ if (Number.isFinite(opts.timeout)) {
9
20
  failTimer = setTimeout(() => {
10
21
  reject(new Error("[waitFor] Timeout"));
11
- clearInterval(intervalTimer);
12
- }, timeout);
22
+ clearTimeout(intervalTimer);
23
+ }, opts.timeout);
13
24
  }
14
- intervalTimer = setInterval(() => {
25
+ let tries = 0;
26
+ const tryFn = (async () => {
15
27
  try {
16
- const result = fn();
17
- if (result) {
28
+ tries++;
29
+ const result = await fn();
30
+ if (result != null && result !== false) {
18
31
  clearTimeout(failTimer);
19
- clearInterval(intervalTimer);
32
+ clearTimeout(intervalTimer);
20
33
  resolve(result);
21
34
  }
35
+ else {
36
+ if (Number.isFinite(opts.maxTries) && tries >= opts.maxTries) {
37
+ clearTimeout(failTimer);
38
+ clearTimeout(intervalTimer);
39
+ reject(new Error("[waitFor] Max tries reached"));
40
+ return;
41
+ }
42
+ setTimeout(() => {
43
+ tryFn().catch(noop_js_1.noop);
44
+ }, options.interval);
45
+ }
22
46
  }
23
47
  catch (error) {
24
48
  clearTimeout(failTimer);
25
- clearInterval(intervalTimer);
49
+ clearTimeout(intervalTimer);
26
50
  const e = new Error("[waitFor] check function threw an error");
27
51
  e.details = { error };
28
52
  reject(e);
29
53
  }
30
- }, interval);
54
+ });
55
+ tryFn().catch(noop_js_1.noop);
31
56
  });
32
57
  };
33
58
  exports.waitFor = waitFor;
@@ -1 +1 @@
1
- {"version":3,"file":"waitFor.js","sourceRoot":"","sources":["../src/waitFor.ts"],"names":[],"mappings":";;;AAAA,MAAM,gBAAgB,GAAG,EAAE,CAAC;AAc5B,MAAM,OAAO,GAAG,CAAI,EAAW,EAAE,QAAQ,GAAG,gBAAgB,EAAE,OAAO,GAAG,QAAQ,EAAE,EAAE;IAChF,OAAO,IAAI,OAAO,CAAI,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACtC,IAAI,aAAwB,EAAE,SAAmB,CAAC;QAElD,IAAI,QAAQ,CAAC,OAAO,CAAC,EAAE;YACnB,SAAS,GAAG,UAAU,CAAC,GAAG,EAAE;gBACxB,MAAM,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC;gBACvC,aAAa,CAAC,aAAa,CAAC,CAAC;YACjC,CAAC,EAAE,OAAO,CAAC,CAAC;SACf;QAED,aAAa,GAAG,WAAW,CAAC,GAAG,EAAE;YAC7B,IAAI;gBACA,MAAM,MAAM,GAAG,EAAE,EAAE,CAAC;gBACpB,IAAI,MAAM,EAAE;oBACR,YAAY,CAAC,SAAS,CAAC,CAAC;oBACxB,aAAa,CAAC,aAAa,CAAC,CAAC;oBAC7B,OAAO,CAAC,MAAM,CAAC,CAAC;iBACnB;aACJ;YACD,OAAO,KAAc,EAAE;gBACnB,YAAY,CAAC,SAAS,CAAC,CAAC;gBACxB,aAAa,CAAC,aAAa,CAAC,CAAC;gBAE7B,MAAM,CAAC,GAAkC,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;gBAC9F,CAAC,CAAC,OAAO,GAAG,EAAE,KAAK,EAAE,CAAC;gBACtB,MAAM,CAAC,CAAC,CAAC,CAAC;aACb;QACL,CAAC,EAAE,QAAQ,CAAC,CAAC;IACjB,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEO,0BAAO"}
1
+ {"version":3,"file":"waitFor.js","sourceRoot":"","sources":["../src/waitFor.ts"],"names":[],"mappings":";;;AAAA,uCAAiC;AAEjC,MAAM,gBAAgB,GAAG,EAAE,CAAC;AAoB5B,MAAM,cAAc,GAAsB;IACtC,QAAQ,EAAE,gBAAgB;IAC1B,OAAO,EAAE,QAAQ;IACjB,QAAQ,EAAE,QAAQ;CACrB,CAAC;AAeF,MAAM,OAAO,GAAG,CAAI,EAAyB,EAAE,UAAmB,cAAc,EAAE,EAAE;IAChF,OAAO,IAAI,OAAO,CAAI,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACtC,IAAI,aAAuB,EAAE,SAAmB,CAAC;QAEjD,MAAM,IAAI,GAAG,EAAE,GAAG,cAAc,EAAE,GAAG,OAAO,EAAE,CAAC;QAC/C,IAAI,OAAO,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,IAAI,CAAC,QAAQ,GAAG,CAAC,EAAE;YACxD,MAAM,CAAC,IAAI,SAAS,CAAC,2CAA2C,CAAC,CAAC,CAAC;YACnE,OAAO;SACV;QAED,IAAI,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;YAC/B,SAAS,GAAG,UAAU,CAAC,GAAG,EAAE;gBACxB,MAAM,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC;gBACvC,YAAY,CAAC,aAAa,CAAC,CAAC;YAChC,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;SACpB;QAED,IAAI,KAAK,GAAG,CAAC,CAAC;QAGd,MAAM,KAAK,GAAG,CAAC,KAAK,IAAI,EAAE;YACtB,IAAI;gBACA,KAAK,EAAE,CAAC;gBACR,MAAM,MAAM,GAAG,MAAM,EAAE,EAAE,CAAC;gBAE1B,IAAI,MAAM,IAAI,IAAI,IAAI,MAAM,KAAK,KAAK,EAAE;oBACpC,YAAY,CAAC,SAAS,CAAC,CAAC;oBACxB,YAAY,CAAC,aAAa,CAAC,CAAC;oBAC5B,OAAO,CAAC,MAAM,CAAC,CAAC;iBACnB;qBACI;oBACD,IAAI,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE;wBAC1D,YAAY,CAAC,SAAS,CAAC,CAAC;wBACxB,YAAY,CAAC,aAAa,CAAC,CAAC;wBAC5B,MAAM,CAAC,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC,CAAC;wBACjD,OAAO;qBACV;oBAED,UAAU,CAAC,GAAG,EAAE;wBACZ,KAAK,EAAE,CAAC,KAAK,CAAC,cAAI,CAAC,CAAC;oBACxB,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC;iBACxB;aACJ;YACD,OAAO,KAAc,EAAE;gBACnB,YAAY,CAAC,SAAS,CAAC,CAAC;gBACxB,YAAY,CAAC,aAAa,CAAC,CAAC;gBAE5B,MAAM,CAAC,GAAkC,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;gBAC9F,CAAC,CAAC,OAAO,GAAG,EAAE,KAAK,EAAE,CAAC;gBACtB,MAAM,CAAC,CAAC,CAAC,CAAC;aACb;QACL,CAAC,CAAC,CAAC;QACH,KAAK,EAAE,CAAC,KAAK,CAAC,cAAI,CAAC,CAAC;IACxB,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEO,0BAAO"}
@@ -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\":\"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\":[]}}");
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\":\"sample\",\"url\":\"functions/sample.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"samples\",\"url\":\"functions/samples.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\":\"shuffle\",\"url\":\"functions/shuffle.html\",\"classes\":\"tsd-kind-function\"},{\"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\":\"toggle\",\"url\":\"functions/toggle.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"trim\",\"url\":\"functions/trim.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"trimEnd\",\"url\":\"functions/trimEnd.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"trimStart\",\"url\":\"functions/trimStart.html\",\"classes\":\"tsd-kind-function\"},{\"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.998]],[\"comment/0\",[]],[\"name/1\",[1,44.998]],[\"comment/1\",[]],[\"name/2\",[2,44.998]],[\"comment/2\",[]],[\"name/3\",[3,44.998]],[\"comment/3\",[]],[\"name/4\",[4,44.998]],[\"comment/4\",[]],[\"name/5\",[5,44.998]],[\"comment/5\",[]],[\"name/6\",[6,19.349]],[\"comment/6\",[]],[\"name/7\",[7,44.998]],[\"comment/7\",[]],[\"name/8\",[8,44.998]],[\"comment/8\",[]],[\"name/9\",[9,44.998]],[\"comment/9\",[]],[\"name/10\",[10,44.998]],[\"comment/10\",[]],[\"name/11\",[11,44.998]],[\"comment/11\",[]],[\"name/12\",[12,44.998]],[\"comment/12\",[]],[\"name/13\",[13,44.998]],[\"comment/13\",[]],[\"name/14\",[14,44.998]],[\"comment/14\",[]],[\"name/15\",[6,19.349]],[\"comment/15\",[]],[\"name/16\",[15,39.89]],[\"comment/16\",[]],[\"name/17\",[16,39.89]],[\"comment/17\",[]],[\"name/18\",[17,39.89]],[\"comment/18\",[]],[\"name/19\",[18,39.89]],[\"comment/19\",[]],[\"name/20\",[19,39.89]],[\"comment/20\",[]],[\"name/21\",[20,39.89]],[\"comment/21\",[]],[\"name/22\",[6,19.349]],[\"comment/22\",[]],[\"name/23\",[21,44.998]],[\"comment/23\",[]],[\"name/24\",[22,44.998]],[\"comment/24\",[]],[\"name/25\",[23,44.998]],[\"comment/25\",[]],[\"name/26\",[24,44.998]],[\"comment/26\",[]],[\"name/27\",[25,44.998]],[\"comment/27\",[]],[\"name/28\",[26,44.998]],[\"comment/28\",[]],[\"name/29\",[27,44.998]],[\"comment/29\",[]],[\"name/30\",[28,44.998]],[\"comment/30\",[]],[\"name/31\",[29,44.998]],[\"comment/31\",[]],[\"name/32\",[30,44.998]],[\"comment/32\",[]],[\"name/33\",[31,44.998]],[\"comment/33\",[]],[\"name/34\",[32,44.998]],[\"comment/34\",[]],[\"name/35\",[33,44.998]],[\"comment/35\",[]],[\"name/36\",[34,44.998]],[\"comment/36\",[]],[\"name/37\",[35,44.998]],[\"comment/37\",[]],[\"name/38\",[36,44.998]],[\"comment/38\",[]],[\"name/39\",[37,44.998]],[\"comment/39\",[]],[\"name/40\",[38,44.998]],[\"comment/40\",[]],[\"name/41\",[39,44.998]],[\"comment/41\",[]],[\"name/42\",[40,44.998]],[\"comment/42\",[]],[\"name/43\",[41,39.89]],[\"comment/43\",[]],[\"name/44\",[6,19.349]],[\"comment/44\",[]],[\"name/45\",[42,44.998]],[\"comment/45\",[]],[\"name/46\",[43,44.998]],[\"comment/46\",[]],[\"name/47\",[6,19.349]],[\"comment/47\",[]],[\"name/48\",[44,44.998]],[\"comment/48\",[]],[\"name/49\",[6,19.349]],[\"comment/49\",[]],[\"name/50\",[41,39.89]],[\"comment/50\",[]],[\"name/51\",[45,44.998]],[\"comment/51\",[]],[\"name/52\",[46,44.998]],[\"comment/52\",[]],[\"name/53\",[47,44.998]],[\"comment/53\",[]],[\"name/54\",[6,19.349]],[\"comment/54\",[]],[\"name/55\",[48,44.998]],[\"comment/55\",[]],[\"name/56\",[6,19.349]],[\"comment/56\",[]],[\"name/57\",[49,44.998]],[\"comment/57\",[]],[\"name/58\",[6,19.349]],[\"comment/58\",[]],[\"name/59\",[50,44.998]],[\"comment/59\",[]],[\"name/60\",[51,44.998]],[\"comment/60\",[]],[\"name/61\",[52,44.998]],[\"comment/61\",[]],[\"name/62\",[6,19.349]],[\"comment/62\",[]],[\"name/63\",[53,44.998]],[\"comment/63\",[]],[\"name/64\",[54,44.998]],[\"comment/64\",[]],[\"name/65\",[6,19.349]],[\"comment/65\",[]],[\"name/66\",[55,44.998]],[\"comment/66\",[]],[\"name/67\",[56,44.998]],[\"comment/67\",[]],[\"name/68\",[57,44.998]],[\"comment/68\",[]],[\"name/69\",[58,44.998]],[\"comment/69\",[]],[\"name/70\",[59,44.998]],[\"comment/70\",[]],[\"name/71\",[60,44.998]],[\"comment/71\",[]],[\"name/72\",[61,44.998]],[\"comment/72\",[]],[\"name/73\",[62,44.998]],[\"comment/73\",[]],[\"name/74\",[63,44.998]],[\"comment/74\",[]],[\"name/75\",[64,44.998]],[\"comment/75\",[]],[\"name/76\",[65,44.998]],[\"comment/76\",[]],[\"name/77\",[66,44.998]],[\"comment/77\",[]],[\"name/78\",[67,44.998]],[\"comment/78\",[]],[\"name/79\",[68,44.998]],[\"comment/79\",[]],[\"name/80\",[69,44.998]],[\"comment/80\",[]],[\"name/81\",[70,44.998]],[\"comment/81\",[]],[\"name/82\",[71,44.998]],[\"comment/82\",[]],[\"name/83\",[72,44.998]],[\"comment/83\",[]],[\"name/84\",[73,44.998]],[\"comment/84\",[]],[\"name/85\",[74,44.998]],[\"comment/85\",[]],[\"name/86\",[75,44.998]],[\"comment/86\",[]],[\"name/87\",[6,19.349]],[\"comment/87\",[]],[\"name/88\",[76,44.998]],[\"comment/88\",[]],[\"name/89\",[77,44.998]],[\"comment/89\",[]],[\"name/90\",[6,19.349]],[\"comment/90\",[]],[\"name/91\",[78,44.998]],[\"comment/91\",[]],[\"name/92\",[6,19.349]],[\"comment/92\",[]],[\"name/93\",[15,39.89]],[\"comment/93\",[]],[\"name/94\",[16,39.89]],[\"comment/94\",[]],[\"name/95\",[17,39.89]],[\"comment/95\",[]],[\"name/96\",[18,39.89]],[\"comment/96\",[]],[\"name/97\",[19,39.89]],[\"comment/97\",[]],[\"name/98\",[20,39.89]],[\"comment/98\",[]],[\"name/99\",[6,19.349]],[\"comment/99\",[]],[\"name/100\",[79,44.998]],[\"comment/100\",[]],[\"name/101\",[80,44.998]],[\"comment/101\",[]],[\"name/102\",[81,44.998]],[\"comment/102\",[]],[\"name/103\",[82,44.998]],[\"comment/103\",[]],[\"name/104\",[83,44.998]],[\"comment/104\",[]],[\"name/105\",[84,44.998]],[\"comment/105\",[]],[\"name/106\",[85,44.998]],[\"comment/106\",[]],[\"name/107\",[86,44.998]],[\"comment/107\",[]],[\"name/108\",[6,19.349]],[\"comment/108\",[]],[\"name/109\",[87,44.998]],[\"comment/109\",[]],[\"name/110\",[88,44.998]],[\"comment/110\",[]],[\"name/111\",[89,44.998]],[\"comment/111\",[]],[\"name/112\",[90,44.998]],[\"comment/112\",[]],[\"name/113\",[91,44.998]],[\"comment/113\",[]],[\"name/114\",[92,44.998]],[\"comment/114\",[]],[\"name/115\",[6,19.349]],[\"comment/115\",[]],[\"name/116\",[93,44.998]],[\"comment/116\",[]],[\"name/117\",[6,19.349]],[\"comment/117\",[]],[\"name/118\",[94,44.998]],[\"comment/118\",[]],[\"name/119\",[95,44.998]],[\"comment/119\",[]],[\"name/120\",[96,44.998]],[\"comment/120\",[]],[\"name/121\",[97,44.998]],[\"comment/121\",[]],[\"name/122\",[6,19.349]],[\"comment/122\",[]],[\"name/123\",[98,44.998]],[\"comment/123\",[]],[\"name/124\",[99,44.998]],[\"comment/124\",[]],[\"name/125\",[100,44.998]],[\"comment/125\",[]],[\"name/126\",[101,44.998]],[\"comment/126\",[]],[\"name/127\",[102,44.998]],[\"comment/127\",[]],[\"name/128\",[103,44.998]],[\"comment/128\",[]],[\"name/129\",[104,44.998]],[\"comment/129\",[]],[\"name/130\",[105,44.998]],[\"comment/130\",[]],[\"name/131\",[106,44.998]],[\"comment/131\",[]],[\"name/132\",[107,44.998]],[\"comment/132\",[]],[\"name/133\",[108,44.998]],[\"comment/133\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"15\":{},\"22\":{},\"44\":{},\"47\":{},\"49\":{},\"54\":{},\"56\":{},\"58\":{},\"62\":{},\"65\":{},\"87\":{},\"90\":{},\"92\":{},\"99\":{},\"108\":{},\"115\":{},\"117\":{},\"122\":{}},\"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\":{},\"97\":{}},\"comment\":{}}],[\"both\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":92,\"name\":{\"114\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":108,\"name\":{\"133\":{}},\"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\":78,\"name\":{\"91\":{}},\"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\":93,\"name\":{\"116\":{}},\"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\":{},\"98\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":107,\"name\":{\"132\":{}},\"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\":{},\"96\":{}},\"comment\":{}}],[\"last\",{\"_index\":40,\"name\":{\"42\":{}},\"comment\":{}}],[\"later\",{\"_index\":41,\"name\":{\"43\":{},\"50\":{}},\"comment\":{}}],[\"leading\",{\"_index\":95,\"name\":{\"119\":{}},\"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\":{},\"94\":{}},\"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\":{},\"93\":{}},\"comment\":{}}],[\"safe\",{\"_index\":69,\"name\":{\"80\":{}},\"comment\":{}}],[\"sample\",{\"_index\":70,\"name\":{\"81\":{}},\"comment\":{}}],[\"samples\",{\"_index\":71,\"name\":{\"82\":{}},\"comment\":{}}],[\"scale\",{\"_index\":72,\"name\":{\"83\":{}},\"comment\":{}}],[\"seq\",{\"_index\":73,\"name\":{\"84\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":74,\"name\":{\"85\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":75,\"name\":{\"86\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":77,\"name\":{\"89\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":76,\"name\":{\"88\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":79,\"name\":{\"100\":{}},\"comment\":{}}],[\"set\",{\"_index\":80,\"name\":{\"101\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":82,\"name\":{\"103\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":83,\"name\":{\"104\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":84,\"name\":{\"105\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":81,\"name\":{\"102\":{}},\"comment\":{}}],[\"shuffle\",{\"_index\":85,\"name\":{\"106\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":86,\"name\":{\"107\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":87,\"name\":{\"109\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":88,\"name\":{\"110\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":89,\"name\":{\"111\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":90,\"name\":{\"112\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":97,\"name\":{\"121\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":91,\"name\":{\"113\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":94,\"name\":{\"118\":{}},\"comment\":{}}],[\"toggle\",{\"_index\":98,\"name\":{\"123\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":96,\"name\":{\"120\":{}},\"comment\":{}}],[\"trim\",{\"_index\":99,\"name\":{\"124\":{}},\"comment\":{}}],[\"trimend\",{\"_index\":100,\"name\":{\"125\":{}},\"comment\":{}}],[\"trimstart\",{\"_index\":101,\"name\":{\"126\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":102,\"name\":{\"127\":{}},\"comment\":{}}],[\"u\",{\"_index\":17,\"name\":{\"18\":{},\"95\":{}},\"comment\":{}}],[\"unique\",{\"_index\":103,\"name\":{\"128\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"wait\",{\"_index\":104,\"name\":{\"129\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":105,\"name\":{\"130\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":106,\"name\":{\"131\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>cap | @ezez/utils - 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">
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 - v4.0.0</title><meta name="description" content="Documentation for @ezez/utils - v4.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.1.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v4.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v2.1.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v4.0.0</a></li>
16
16
  <li><a href="cap.html">cap</a></li></ul>
17
17
  <h1>Function cap</h1></div>
18
18
  <section class="tsd-panel">
@@ -38,7 +38,7 @@
38
38
  </div></li></ul></div>
39
39
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
40
40
  <ul>
41
- <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/26ba3e6/src/cap.ts#L7">cap.ts:7</a></li></ul></aside></li></ul></section></div>
41
+ <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/a7fcba0/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/> v2.1.0</a>
61
+ <li><a href="../modules.html">@ezez/utils -<wbr/> v4.0.0</a>
62
62
  <ul>
63
63
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
64
64
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -124,17 +124,24 @@
124
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
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>
126
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>
127
+ <li class="tsd-kind-function"><a href="sample.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>sample</a></li>
128
+ <li class="tsd-kind-function"><a href="samples.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>samples</a></li>
127
129
  <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
130
  <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
131
  <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
132
  <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>
131
133
  <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>
132
134
  <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>
135
+ <li class="tsd-kind-function"><a href="shuffle.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>shuffle</a></li>
133
136
  <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>
134
137
  <li class="tsd-kind-function"><a href="sortProps.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/>Props</a></li>
135
138
  <li class="tsd-kind-function"><a href="stripPrefix.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>strip<wbr/>Prefix</a></li>
136
139
  <li class="tsd-kind-function"><a href="stripSuffix.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>strip<wbr/>Suffix</a></li>
137
140
  <li class="tsd-kind-function"><a href="throttle.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>throttle</a></li>
141
+ <li class="tsd-kind-function"><a href="toggle.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>toggle</a></li>
142
+ <li class="tsd-kind-function"><a href="trim.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>trim</a></li>
143
+ <li class="tsd-kind-function"><a href="trimEnd.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>trim<wbr/>End</a></li>
144
+ <li class="tsd-kind-function"><a href="trimStart.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>trim<wbr/>Start</a></li>
138
145
  <li class="tsd-kind-function"><a href="truthy.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>truthy</a></li>
139
146
  <li class="tsd-kind-function"><a href="unique.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>unique</a></li>
140
147
  <li class="tsd-kind-function"><a href="wait.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>wait</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 - 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">
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 - v4.0.0</title><meta name="description" content="Documentation for @ezez/utils - v4.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.1.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v4.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v2.1.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v4.0.0</a></li>
16
16
  <li><a href="capitalize.html">capitalize</a></li></ul>
17
17
  <h1>Function capitalize</h1></div>
18
18
  <section class="tsd-panel">
@@ -43,7 +43,7 @@
43
43
  </div></li></ul></div>
44
44
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
45
45
  <ul>
46
- <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/26ba3e6/src/capitalize.ts#L9">capitalize.ts:9</a></li></ul></aside></li></ul></section></div>
46
+ <li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/a7fcba0/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/> v2.1.0</a>
66
+ <li><a href="../modules.html">@ezez/utils -<wbr/> v4.0.0</a>
67
67
  <ul>
68
68
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
69
69
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -129,17 +129,24 @@
129
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
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>
131
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>
132
+ <li class="tsd-kind-function"><a href="sample.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>sample</a></li>
133
+ <li class="tsd-kind-function"><a href="samples.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>samples</a></li>
132
134
  <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
135
  <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
136
  <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
137
  <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>
136
138
  <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>
137
139
  <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>
140
+ <li class="tsd-kind-function"><a href="shuffle.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>shuffle</a></li>
138
141
  <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>
139
142
  <li class="tsd-kind-function"><a href="sortProps.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/>Props</a></li>
140
143
  <li class="tsd-kind-function"><a href="stripPrefix.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>strip<wbr/>Prefix</a></li>
141
144
  <li class="tsd-kind-function"><a href="stripSuffix.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>strip<wbr/>Suffix</a></li>
142
145
  <li class="tsd-kind-function"><a href="throttle.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>throttle</a></li>
146
+ <li class="tsd-kind-function"><a href="toggle.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>toggle</a></li>
147
+ <li class="tsd-kind-function"><a href="trim.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>trim</a></li>
148
+ <li class="tsd-kind-function"><a href="trimEnd.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>trim<wbr/>End</a></li>
149
+ <li class="tsd-kind-function"><a href="trimStart.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>trim<wbr/>Start</a></li>
143
150
  <li class="tsd-kind-function"><a href="truthy.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>truthy</a></li>
144
151
  <li class="tsd-kind-function"><a href="unique.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>unique</a></li>
145
152
  <li class="tsd-kind-function"><a href="wait.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>wait</a></li>