@ezez/utils 1.9.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/README.md +3 -0
  3. package/dist/deserialize.d.ts +13 -0
  4. package/dist/deserialize.d.ts.map +1 -0
  5. package/dist/deserialize.js +42 -0
  6. package/dist/deserialize.js.map +1 -0
  7. package/dist/index.d.ts +3 -0
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +3 -0
  10. package/dist/index.js.map +1 -1
  11. package/dist/omit.js +3 -1
  12. package/dist/omit.js.map +1 -1
  13. package/dist/replace.d.ts.map +1 -1
  14. package/dist/replace.js.map +1 -1
  15. package/dist/replaceDeep.d.ts +3 -0
  16. package/dist/replaceDeep.d.ts.map +1 -0
  17. package/dist/replaceDeep.js +26 -0
  18. package/dist/replaceDeep.js.map +1 -0
  19. package/dist/safe.d.ts.map +1 -1
  20. package/dist/safe.js +1 -1
  21. package/dist/safe.js.map +1 -1
  22. package/dist/serialize.d.ts +16 -0
  23. package/dist/serialize.d.ts.map +1 -0
  24. package/dist/serialize.js +61 -0
  25. package/dist/serialize.js.map +1 -0
  26. package/dist/setImmutable.js +1 -1
  27. package/dist/setImmutable.js.map +1 -1
  28. package/dist/sortBy.js +1 -2
  29. package/dist/sortBy.js.map +1 -1
  30. package/dist/sortProps.d.ts.map +1 -1
  31. package/dist/sortProps.js.map +1 -1
  32. package/dist/throttle.js +5 -7
  33. package/dist/throttle.js.map +1 -1
  34. package/docs/assets/search.js +1 -1
  35. package/docs/functions/cap.html +11 -6
  36. package/docs/functions/capitalize.html +11 -6
  37. package/docs/functions/coalesce.html +11 -6
  38. package/docs/functions/compareArrays.html +11 -6
  39. package/docs/functions/compareProps.html +11 -6
  40. package/docs/functions/deserialize.html +148 -0
  41. package/docs/functions/ensureArray.html +11 -6
  42. package/docs/functions/ensureDate.html +11 -6
  43. package/docs/functions/ensureError.html +11 -6
  44. package/docs/functions/ensurePrefix.html +11 -6
  45. package/docs/functions/ensureSuffix.html +11 -6
  46. package/docs/functions/ensureTimestamp.html +11 -6
  47. package/docs/functions/escapeRegExp.html +11 -6
  48. package/docs/functions/formatDate.html +11 -6
  49. package/docs/functions/get.html +11 -6
  50. package/docs/functions/getMultiple.html +11 -6
  51. package/docs/functions/insertSeparator.html +11 -6
  52. package/docs/functions/isEmpty.html +11 -6
  53. package/docs/functions/isNumericString.html +11 -6
  54. package/docs/functions/isPlainObject.html +11 -6
  55. package/docs/functions/last.html +11 -6
  56. package/docs/functions/later-1.html +11 -6
  57. package/docs/functions/mapAsync.html +11 -6
  58. package/docs/functions/mapValues.html +11 -6
  59. package/docs/functions/match.html +11 -6
  60. package/docs/functions/merge.html +19 -14
  61. package/docs/functions/mostFrequent.html +11 -6
  62. package/docs/functions/noop.html +11 -6
  63. package/docs/functions/occurrences.html +11 -6
  64. package/docs/functions/omit.html +11 -6
  65. package/docs/functions/pick.html +11 -6
  66. package/docs/functions/pull.html +11 -6
  67. package/docs/functions/remove.html +11 -6
  68. package/docs/functions/removeCommonProperties.html +11 -6
  69. package/docs/functions/replace.html +11 -6
  70. package/docs/functions/replaceDeep.html +153 -0
  71. package/docs/functions/rethrow.html +11 -6
  72. package/docs/functions/safe.html +12 -7
  73. package/docs/functions/scale.html +11 -6
  74. package/docs/functions/seq.html +11 -6
  75. package/docs/functions/seqEarlyBreak.html +11 -6
  76. package/docs/functions/serialize.html +153 -0
  77. package/docs/functions/set.html +11 -6
  78. package/docs/functions/setImmutable.html +11 -6
  79. package/docs/functions/sortBy.html +11 -6
  80. package/docs/functions/sortProps.html +14 -7
  81. package/docs/functions/stripPrefix.html +11 -6
  82. package/docs/functions/stripSuffix.html +11 -6
  83. package/docs/functions/throttle.html +11 -6
  84. package/docs/functions/truthy.html +11 -6
  85. package/docs/functions/unique.html +11 -6
  86. package/docs/functions/wait.html +11 -6
  87. package/docs/functions/waitFor.html +11 -6
  88. package/docs/functions/waitSync.html +11 -6
  89. package/docs/index.html +13 -5
  90. package/docs/interfaces/ComparePropsOptions.html +6 -6
  91. package/docs/interfaces/GetMultipleSource.html +11 -6
  92. package/docs/interfaces/GetSource.html +11 -6
  93. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  94. package/docs/interfaces/OccurencesOptions.html +6 -6
  95. package/docs/interfaces/SetImmutableSource.html +11 -6
  96. package/docs/interfaces/SetSource.html +11 -6
  97. package/docs/interfaces/ThrottleOptions.html +7 -7
  98. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  99. package/docs/modules.html +15 -5
  100. package/docs/pages/CHANGELOG.html +65 -39
  101. package/docs/pages/Introduction.html +10 -5
  102. package/docs/types/CustomDeserializers.html +151 -0
  103. package/docs/types/CustomSerializers.html +151 -0
  104. package/docs/types/Later.html +11 -6
  105. package/docs/types/MapValuesFn.html +11 -6
  106. package/docs/types/MatchCallback.html +11 -6
  107. package/docs/types/SeqEarlyBreaker.html +11 -6
  108. package/docs/types/SeqFn.html +11 -6
  109. package/docs/types/SeqFunctions.html +11 -6
  110. package/docs/types/SetImmutablePath.html +11 -6
  111. package/docs/types/ThrottledFunction.html +11 -6
  112. package/docs/variables/mapValuesUNSET.html +11 -6
  113. package/docs/variables/mergeUNSET.html +11 -6
  114. package/esm/deserialize.d.ts +13 -0
  115. package/esm/deserialize.d.ts.map +1 -0
  116. package/esm/deserialize.js +39 -0
  117. package/esm/deserialize.js.map +1 -0
  118. package/esm/index.d.ts +3 -0
  119. package/esm/index.d.ts.map +1 -1
  120. package/esm/index.js +3 -0
  121. package/esm/index.js.map +1 -1
  122. package/esm/replace.d.ts.map +1 -1
  123. package/esm/replace.js.map +1 -1
  124. package/esm/replaceDeep.d.ts +3 -0
  125. package/esm/replaceDeep.d.ts.map +1 -0
  126. package/esm/replaceDeep.js +23 -0
  127. package/esm/replaceDeep.js.map +1 -0
  128. package/esm/safe.d.ts.map +1 -1
  129. package/esm/safe.js.map +1 -1
  130. package/esm/serialize.d.ts +16 -0
  131. package/esm/serialize.d.ts.map +1 -0
  132. package/esm/serialize.js +58 -0
  133. package/esm/serialize.js.map +1 -0
  134. package/esm/sortBy.js +1 -2
  135. package/esm/sortBy.js.map +1 -1
  136. package/esm/sortProps.d.ts.map +1 -1
  137. package/esm/sortProps.js.map +1 -1
  138. package/esm/throttle.js +5 -7
  139. package/esm/throttle.js.map +1 -1
  140. package/package.json +26 -25
  141. package/pnpm-lock.yaml +5223 -0
  142. package/src/deserialize.spec.ts +69 -0
  143. package/src/deserialize.ts +74 -0
  144. package/src/index.ts +3 -0
  145. package/src/replace.ts +0 -1
  146. package/src/replaceDeep.spec.ts +71 -0
  147. package/src/replaceDeep.ts +44 -0
  148. package/src/safe.ts +0 -1
  149. package/src/serialize.spec.ts +83 -0
  150. package/src/serialize.ts +102 -0
  151. package/src/sortProps.ts +4 -1
  152. package/babel.config.cjs +0 -6
@@ -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>Changelog | @ezez/utils - v1.9.0</title><meta name="description" content="Documentation for @ezez/utils - v1.9.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>Changelog | @ezez/utils - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,24 +6,45 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.9.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.9.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
16
16
  <li><a href="CHANGELOG.html">Changelog</a></li></ul>
17
17
  <h1> Changelog</h1></div>
18
18
  <div class="tsd-panel tsd-typography"><p>All notable changes to this project will be documented in this file.</p>
19
- <p>The format is based on <a href="http://keepachangelog.com/en/1.0.0/">Keep a Changelog</a>
19
+ <p>The format is based on <a href="https://ezez.dev/changelog/">EZEZ Chanelog</a>
20
20
  and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p>
21
21
 
22
+ <a href="#200---2023-10-09" id="200---2023-10-09" style="color: inherit; text-decoration: none;">
23
+ <h2>[2.0.0] - 2023-10-09</h2>
24
+ </a>
25
+
26
+ <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
27
+ <h3>Breaking</h3>
28
+ </a>
29
+ <ul>
30
+ <li>code is compiled to es2020 due to <code>bigint</code> usage, if you are not using <code>serialize</code> or <code>deserialize</code> you can still
31
+ transpile this lib yourself</li>
32
+ </ul>
33
+
34
+ <a href="#added" id="added" style="color: inherit; text-decoration: none;">
35
+ <h3>Added</h3>
36
+ </a>
37
+ <ul>
38
+ <li><code>serialize</code> method</li>
39
+ <li><code>deserialize</code> method</li>
40
+ <li><code>replaceDeep</code> method</li>
41
+ </ul>
42
+
22
43
  <a href="#190---2023-07-07" id="190---2023-07-07" style="color: inherit; text-decoration: none;">
23
44
  <h2>[1.9.0] - 2023-07-07</h2>
24
45
  </a>
25
46
 
26
- <a href="#added" id="added" style="color: inherit; text-decoration: none;">
47
+ <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
27
48
  <h3>Added</h3>
28
49
  </a>
29
50
  <ul>
@@ -45,7 +66,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
45
66
  <h2>[1.8.0] - 2023-06-03</h2>
46
67
  </a>
47
68
 
48
- <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
69
+ <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
49
70
  <h3>Added</h3>
50
71
  </a>
51
72
  <ul>
@@ -63,7 +84,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
63
84
  <h2>[1.7.0] - 2023-05-22</h2>
64
85
  </a>
65
86
 
66
- <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
87
+ <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
67
88
  <h3>Added</h3>
68
89
  </a>
69
90
  <ul>
@@ -74,7 +95,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
74
95
  <h2>[1.6.0] - 2023-05-12</h2>
75
96
  </a>
76
97
 
77
- <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
98
+ <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
78
99
  <h3>Added</h3>
79
100
  </a>
80
101
  <ul>
@@ -85,7 +106,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
85
106
  <h2>[1.5.0] - 2023-05-12</h2>
86
107
  </a>
87
108
 
88
- <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
109
+ <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
89
110
  <h3>Added</h3>
90
111
  </a>
91
112
  <ul>
@@ -97,7 +118,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
97
118
  <h2>[1.4.0] - 2023-05-11</h2>
98
119
  </a>
99
120
 
100
- <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
121
+ <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
101
122
  <h3>Added</h3>
102
123
  </a>
103
124
  <ul>
@@ -110,7 +131,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
110
131
  <h2>[1.3.0] - 2023-05-07</h2>
111
132
  </a>
112
133
 
113
- <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
134
+ <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
114
135
  <h3>Added</h3>
115
136
  </a>
116
137
  <ul>
@@ -129,7 +150,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
129
150
  <h2>[1.2.0] - 2023-03-01</h2>
130
151
  </a>
131
152
 
132
- <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
153
+ <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
133
154
  <h3>Added</h3>
134
155
  </a>
135
156
  <ul>
@@ -145,7 +166,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
145
166
  <h2>[1.1.0] - 2023-02-20</h2>
146
167
  </a>
147
168
 
148
- <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
169
+ <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
149
170
  <h3>Added</h3>
150
171
  </a>
151
172
  <ul>
@@ -164,14 +185,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
164
185
  <h2>[1.0.0] - 2023-02-19</h2>
165
186
  </a>
166
187
 
167
- <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
188
+ <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
168
189
  <h3>Added</h3>
169
190
  </a>
170
191
  <ul>
171
192
  <li><code>isPlainObject</code> method</li>
172
193
  </ul>
173
194
 
174
- <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
195
+ <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
175
196
  <h3>Breaking</h3>
176
197
  </a>
177
198
  <ul>
@@ -218,7 +239,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
218
239
  <h2>[0.24.0] - 2022-09-23</h2>
219
240
  </a>
220
241
 
221
- <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
242
+ <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
222
243
  <h3>Added</h3>
223
244
  </a>
224
245
  <ul>
@@ -266,7 +287,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
266
287
  <h2>[0.23.0] - 2022-07-17</h2>
267
288
  </a>
268
289
 
269
- <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
290
+ <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
270
291
  <h3>Added</h3>
271
292
  </a>
272
293
  <ul>
@@ -277,7 +298,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
277
298
  <h2>[0.22.0] - 2022-07-16</h2>
278
299
  </a>
279
300
 
280
- <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
301
+ <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
281
302
  <h3>Added</h3>
282
303
  </a>
283
304
  <ul>
@@ -295,7 +316,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
295
316
  <h2>[0.21.0] - 2022-07-08</h2>
296
317
  </a>
297
318
 
298
- <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
319
+ <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
299
320
  <h3>Added</h3>
300
321
  </a>
301
322
  <ul>
@@ -306,7 +327,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
306
327
  <h2>[0.20.0] - 2022-07-03</h2>
307
328
  </a>
308
329
 
309
- <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
330
+ <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
310
331
  <h3>Added</h3>
311
332
  </a>
312
333
  <ul>
@@ -328,7 +349,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
328
349
  <h2>[0.19.0] - 2022-04-27</h2>
329
350
  </a>
330
351
 
331
- <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
352
+ <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
332
353
  <h3>Added</h3>
333
354
  </a>
334
355
  <ul>
@@ -343,7 +364,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
343
364
  <li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
344
365
  </ul>
345
366
 
346
- <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
367
+ <a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
347
368
  <h3>Breaking</h3>
348
369
  </a>
349
370
  <ul>
@@ -354,7 +375,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
354
375
  <h2>[0.18.0] - 2021-12-04</h2>
355
376
  </a>
356
377
 
357
- <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
378
+ <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
358
379
  <h3>Added</h3>
359
380
  </a>
360
381
  <ul>
@@ -377,7 +398,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
377
398
  <h2>[0.17.0] - 2021-10-31</h2>
378
399
  </a>
379
400
 
380
- <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
401
+ <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
381
402
  <h3>Added</h3>
382
403
  </a>
383
404
  <ul>
@@ -395,7 +416,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
395
416
  <h2>[0.16.0] - 2021-09-24</h2>
396
417
  </a>
397
418
 
398
- <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
419
+ <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
399
420
  <h3>Added</h3>
400
421
  </a>
401
422
  <ul>
@@ -406,7 +427,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
406
427
  <h2>[0.15.0] - 2021-07-04</h2>
407
428
  </a>
408
429
 
409
- <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
430
+ <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
410
431
  <h3>Added</h3>
411
432
  </a>
412
433
  <ul>
@@ -442,7 +463,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
442
463
  <li>upgraded typings for sortBy</li>
443
464
  </ul>
444
465
 
445
- <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
466
+ <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
446
467
  <h3>Added</h3>
447
468
  </a>
448
469
  <ul>
@@ -484,7 +505,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
484
505
  <h2>[0.13.0] - 2021-02-03</h2>
485
506
  </a>
486
507
 
487
- <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
508
+ <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
488
509
  <h3>Added</h3>
489
510
  </a>
490
511
  <ul>
@@ -497,7 +518,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
497
518
  <h2>[0.12.0] - 2021-01-19</h2>
498
519
  </a>
499
520
 
500
- <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
521
+ <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
501
522
  <h3>Added</h3>
502
523
  </a>
503
524
  <ul>
@@ -539,7 +560,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
539
560
  <h2>[0.10.0] - 2020-09-14</h2>
540
561
  </a>
541
562
 
542
- <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
563
+ <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
543
564
  <h3>Added</h3>
544
565
  </a>
545
566
  <ul>
@@ -550,7 +571,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
550
571
  <h2>[0.9.0] - 2020-07-09</h2>
551
572
  </a>
552
573
 
553
- <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
574
+ <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
554
575
  <h3>Added</h3>
555
576
  </a>
556
577
  <ul>
@@ -591,7 +612,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
591
612
  <h2>[0.7.0] - 2020-03-10</h2>
592
613
  </a>
593
614
 
594
- <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
615
+ <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
595
616
  <h3>Added</h3>
596
617
  </a>
597
618
  <ul>
@@ -650,7 +671,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
650
671
  <h2>[0.6.0] - 2019-05-12</h2>
651
672
  </a>
652
673
 
653
- <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
674
+ <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
654
675
  <h3>Added</h3>
655
676
  </a>
656
677
  <ul>
@@ -668,7 +689,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
668
689
  <h2>[0.5.0] - 2019-04-09</h2>
669
690
  </a>
670
691
 
671
- <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
692
+ <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
672
693
  <h3>Added</h3>
673
694
  </a>
674
695
  <ul>
@@ -690,7 +711,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
690
711
  <h2>[0.4.0] - 2019-01-30</h2>
691
712
  </a>
692
713
 
693
- <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
714
+ <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
694
715
  <h3>Added</h3>
695
716
  </a>
696
717
  <ul>
@@ -727,7 +748,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
727
748
  <li>improved one <code>set</code> test</li>
728
749
  </ul>
729
750
 
730
- <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
751
+ <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
731
752
  <h3>Added</h3>
732
753
  </a>
733
754
  <ul>
@@ -738,7 +759,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
738
759
  <h2>[0.2.0] 2018-12-09</h2>
739
760
  </a>
740
761
 
741
- <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
762
+ <a href="#added-31" id="added-31" style="color: inherit; text-decoration: none;">
742
763
  <h3>Added</h3>
743
764
  </a>
744
765
  <ul>
@@ -765,7 +786,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
765
786
  <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>
766
787
  <div class="tsd-accordion-details">
767
788
  <ul>
768
- <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.9.0</a>
789
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
769
790
  <ul>
770
791
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
771
792
  <li class="current selected pages-entry pages-entry-page pages-entry-depth-1"><a href="CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -780,7 +801,9 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
780
801
  <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
781
802
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
782
803
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
783
- <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Later</a></li>
804
+ <li class="tsd-kind-type-alias"><a href="../types/CustomDeserializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Custom<wbr/>Deserializers</a></li>
805
+ <li class="tsd-kind-type-alias"><a href="../types/CustomSerializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Custom<wbr/>Serializers</a></li>
806
+ <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Later</a></li>
784
807
  <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Map<wbr/>Values<wbr/>Fn</a></li>
785
808
  <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
786
809
  <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
@@ -795,6 +818,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
795
818
  <li class="tsd-kind-function"><a href="../functions/coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
796
819
  <li class="tsd-kind-function"><a href="../functions/compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
797
820
  <li class="tsd-kind-function"><a href="../functions/compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
821
+ <li class="tsd-kind-function"><a href="../functions/deserialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>deserialize</a></li>
798
822
  <li class="tsd-kind-function"><a href="../functions/ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
799
823
  <li class="tsd-kind-function"><a href="../functions/ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
800
824
  <li class="tsd-kind-function"><a href="../functions/ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
@@ -824,11 +848,13 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
824
848
  <li class="tsd-kind-function"><a href="../functions/remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
825
849
  <li class="tsd-kind-function"><a href="../functions/removeCommonProperties.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove<wbr/>Common<wbr/>Properties</a></li>
826
850
  <li class="tsd-kind-function"><a href="../functions/replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
851
+ <li class="tsd-kind-function"><a href="../functions/replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
827
852
  <li class="tsd-kind-function"><a href="../functions/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>
828
853
  <li class="tsd-kind-function"><a href="../functions/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>
829
854
  <li class="tsd-kind-function"><a href="../functions/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>
830
855
  <li class="tsd-kind-function"><a href="../functions/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>
831
856
  <li class="tsd-kind-function"><a href="../functions/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>
857
+ <li class="tsd-kind-function"><a href="../functions/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>
832
858
  <li class="tsd-kind-function"><a href="../functions/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>
833
859
  <li class="tsd-kind-function"><a href="../functions/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>
834
860
  <li class="tsd-kind-function"><a href="../functions/sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Introduction | @ezez/utils - v1.9.0</title><meta name="description" content="Documentation for @ezez/utils - v1.9.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>Introduction | @ezez/utils - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.9.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.9.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
16
16
  <li><a href="Introduction.html">Introduction</a></li></ul>
17
17
  <h1> Introduction</h1></div>
18
18
  <div class="tsd-panel tsd-typography"><p>WIP.</p>
@@ -36,7 +36,7 @@
36
36
  <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>
37
37
  <div class="tsd-accordion-details">
38
38
  <ul>
39
- <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.9.0</a>
39
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
40
40
  <ul>
41
41
  <li class="current selected pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
42
42
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -51,7 +51,9 @@
51
51
  <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
52
52
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
53
53
  <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
54
- <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Later</a></li>
54
+ <li class="tsd-kind-type-alias"><a href="../types/CustomDeserializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Custom<wbr/>Deserializers</a></li>
55
+ <li class="tsd-kind-type-alias"><a href="../types/CustomSerializers.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Custom<wbr/>Serializers</a></li>
56
+ <li class="tsd-kind-type-alias"><a href="../types/Later.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Later</a></li>
55
57
  <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Map<wbr/>Values<wbr/>Fn</a></li>
56
58
  <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
57
59
  <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
@@ -66,6 +68,7 @@
66
68
  <li class="tsd-kind-function"><a href="../functions/coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
67
69
  <li class="tsd-kind-function"><a href="../functions/compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
68
70
  <li class="tsd-kind-function"><a href="../functions/compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
71
+ <li class="tsd-kind-function"><a href="../functions/deserialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>deserialize</a></li>
69
72
  <li class="tsd-kind-function"><a href="../functions/ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
70
73
  <li class="tsd-kind-function"><a href="../functions/ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
71
74
  <li class="tsd-kind-function"><a href="../functions/ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
@@ -95,11 +98,13 @@
95
98
  <li class="tsd-kind-function"><a href="../functions/remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
96
99
  <li class="tsd-kind-function"><a href="../functions/removeCommonProperties.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove<wbr/>Common<wbr/>Properties</a></li>
97
100
  <li class="tsd-kind-function"><a href="../functions/replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
101
+ <li class="tsd-kind-function"><a href="../functions/replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
98
102
  <li class="tsd-kind-function"><a href="../functions/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>
99
103
  <li class="tsd-kind-function"><a href="../functions/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>
100
104
  <li class="tsd-kind-function"><a href="../functions/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>
101
105
  <li class="tsd-kind-function"><a href="../functions/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>
102
106
  <li class="tsd-kind-function"><a href="../functions/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>
107
+ <li class="tsd-kind-function"><a href="../functions/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>
103
108
  <li class="tsd-kind-function"><a href="../functions/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>
104
109
  <li class="tsd-kind-function"><a href="../functions/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>
105
110
  <li class="tsd-kind-function"><a href="../functions/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>