@ezez/utils 1.9.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/README.md +4 -0
  3. package/dist/deserialize.d.ts +13 -0
  4. package/dist/deserialize.d.ts.map +1 -0
  5. package/dist/deserialize.js +42 -0
  6. package/dist/deserialize.js.map +1 -0
  7. package/dist/index.d.ts +4 -0
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +4 -0
  10. package/dist/index.js.map +1 -1
  11. package/dist/omit.js +3 -1
  12. package/dist/omit.js.map +1 -1
  13. package/dist/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/round.d.ts +3 -0
  20. package/dist/round.d.ts.map +1 -0
  21. package/dist/round.js +9 -0
  22. package/dist/round.js.map +1 -0
  23. package/dist/safe.d.ts.map +1 -1
  24. package/dist/safe.js +1 -1
  25. package/dist/safe.js.map +1 -1
  26. package/dist/serialize.d.ts +16 -0
  27. package/dist/serialize.d.ts.map +1 -0
  28. package/dist/serialize.js +61 -0
  29. package/dist/serialize.js.map +1 -0
  30. package/dist/setImmutable.js +1 -1
  31. package/dist/setImmutable.js.map +1 -1
  32. package/dist/sortBy.js +1 -2
  33. package/dist/sortBy.js.map +1 -1
  34. package/dist/sortProps.d.ts.map +1 -1
  35. package/dist/sortProps.js.map +1 -1
  36. package/dist/throttle.js +5 -7
  37. package/dist/throttle.js.map +1 -1
  38. package/docs/assets/search.js +1 -1
  39. package/docs/functions/cap.html +12 -6
  40. package/docs/functions/capitalize.html +12 -6
  41. package/docs/functions/coalesce.html +12 -6
  42. package/docs/functions/compareArrays.html +12 -6
  43. package/docs/functions/compareProps.html +12 -6
  44. package/docs/functions/deserialize.html +149 -0
  45. package/docs/functions/ensureArray.html +12 -6
  46. package/docs/functions/ensureDate.html +12 -6
  47. package/docs/functions/ensureError.html +12 -6
  48. package/docs/functions/ensurePrefix.html +12 -6
  49. package/docs/functions/ensureSuffix.html +12 -6
  50. package/docs/functions/ensureTimestamp.html +12 -6
  51. package/docs/functions/escapeRegExp.html +12 -6
  52. package/docs/functions/formatDate.html +12 -6
  53. package/docs/functions/get.html +12 -6
  54. package/docs/functions/getMultiple.html +12 -6
  55. package/docs/functions/insertSeparator.html +12 -6
  56. package/docs/functions/isEmpty.html +12 -6
  57. package/docs/functions/isNumericString.html +12 -6
  58. package/docs/functions/isPlainObject.html +12 -6
  59. package/docs/functions/last.html +12 -6
  60. package/docs/functions/later-1.html +12 -6
  61. package/docs/functions/mapAsync.html +12 -6
  62. package/docs/functions/mapValues.html +12 -6
  63. package/docs/functions/match.html +12 -6
  64. package/docs/functions/merge.html +20 -14
  65. package/docs/functions/mostFrequent.html +12 -6
  66. package/docs/functions/noop.html +12 -6
  67. package/docs/functions/occurrences.html +12 -6
  68. package/docs/functions/omit.html +12 -6
  69. package/docs/functions/pick.html +12 -6
  70. package/docs/functions/pull.html +12 -6
  71. package/docs/functions/remove.html +12 -6
  72. package/docs/functions/removeCommonProperties.html +12 -6
  73. package/docs/functions/replace.html +12 -6
  74. package/docs/functions/replaceDeep.html +154 -0
  75. package/docs/functions/rethrow.html +12 -6
  76. package/docs/functions/round.html +144 -0
  77. package/docs/functions/safe.html +13 -7
  78. package/docs/functions/scale.html +12 -6
  79. package/docs/functions/seq.html +12 -6
  80. package/docs/functions/seqEarlyBreak.html +12 -6
  81. package/docs/functions/serialize.html +154 -0
  82. package/docs/functions/set.html +12 -6
  83. package/docs/functions/setImmutable.html +12 -6
  84. package/docs/functions/sortBy.html +12 -6
  85. package/docs/functions/sortProps.html +15 -7
  86. package/docs/functions/stripPrefix.html +12 -6
  87. package/docs/functions/stripSuffix.html +12 -6
  88. package/docs/functions/throttle.html +12 -6
  89. package/docs/functions/truthy.html +12 -6
  90. package/docs/functions/unique.html +12 -6
  91. package/docs/functions/wait.html +12 -6
  92. package/docs/functions/waitFor.html +12 -6
  93. package/docs/functions/waitSync.html +12 -6
  94. package/docs/index.html +15 -5
  95. package/docs/interfaces/ComparePropsOptions.html +6 -6
  96. package/docs/interfaces/GetMultipleSource.html +12 -6
  97. package/docs/interfaces/GetSource.html +12 -6
  98. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  99. package/docs/interfaces/OccurencesOptions.html +6 -6
  100. package/docs/interfaces/SetImmutableSource.html +12 -6
  101. package/docs/interfaces/SetSource.html +12 -6
  102. package/docs/interfaces/ThrottleOptions.html +7 -7
  103. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  104. package/docs/modules.html +17 -5
  105. package/docs/pages/CHANGELOG.html +77 -39
  106. package/docs/pages/Introduction.html +11 -5
  107. package/docs/types/CustomDeserializers.html +152 -0
  108. package/docs/types/CustomSerializers.html +152 -0
  109. package/docs/types/Later.html +12 -6
  110. package/docs/types/MapValuesFn.html +12 -6
  111. package/docs/types/MatchCallback.html +12 -6
  112. package/docs/types/SeqEarlyBreaker.html +12 -6
  113. package/docs/types/SeqFn.html +12 -6
  114. package/docs/types/SeqFunctions.html +12 -6
  115. package/docs/types/SetImmutablePath.html +12 -6
  116. package/docs/types/ThrottledFunction.html +12 -6
  117. package/docs/variables/mapValuesUNSET.html +12 -6
  118. package/docs/variables/mergeUNSET.html +12 -6
  119. package/esm/deserialize.d.ts +13 -0
  120. package/esm/deserialize.d.ts.map +1 -0
  121. package/esm/deserialize.js +39 -0
  122. package/esm/deserialize.js.map +1 -0
  123. package/esm/index.d.ts +4 -0
  124. package/esm/index.d.ts.map +1 -1
  125. package/esm/index.js +4 -0
  126. package/esm/index.js.map +1 -1
  127. package/esm/replace.d.ts.map +1 -1
  128. package/esm/replace.js.map +1 -1
  129. package/esm/replaceDeep.d.ts +3 -0
  130. package/esm/replaceDeep.d.ts.map +1 -0
  131. package/esm/replaceDeep.js +23 -0
  132. package/esm/replaceDeep.js.map +1 -0
  133. package/esm/round.d.ts +3 -0
  134. package/esm/round.d.ts.map +1 -0
  135. package/esm/round.js +6 -0
  136. package/esm/round.js.map +1 -0
  137. package/esm/safe.d.ts.map +1 -1
  138. package/esm/safe.js.map +1 -1
  139. package/esm/serialize.d.ts +16 -0
  140. package/esm/serialize.d.ts.map +1 -0
  141. package/esm/serialize.js +58 -0
  142. package/esm/serialize.js.map +1 -0
  143. package/esm/sortBy.js +1 -2
  144. package/esm/sortBy.js.map +1 -1
  145. package/esm/sortProps.d.ts.map +1 -1
  146. package/esm/sortProps.js.map +1 -1
  147. package/esm/throttle.js +5 -7
  148. package/esm/throttle.js.map +1 -1
  149. package/package.json +26 -25
  150. package/pnpm-lock.yaml +5223 -0
  151. package/src/deserialize.spec.ts +69 -0
  152. package/src/deserialize.ts +74 -0
  153. package/src/index.ts +4 -0
  154. package/src/replace.ts +0 -1
  155. package/src/replaceDeep.spec.ts +71 -0
  156. package/src/replaceDeep.ts +44 -0
  157. package/src/round.spec.ts +27 -0
  158. package/src/round.ts +21 -0
  159. package/src/safe.ts +0 -1
  160. package/src/serialize.spec.ts +83 -0
  161. package/src/serialize.ts +102 -0
  162. package/src/sortProps.ts +4 -1
  163. 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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v2.1.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,24 +6,56 @@
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.1.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.9.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.1.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 Changelog</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="#210---2023-10-29" id="210---2023-10-29" style="color: inherit; text-decoration: none;">
23
+ <h2>[2.1.0] - 2023-10-29</h2>
24
+ </a>
25
+
26
+ <a href="#added" id="added" style="color: inherit; text-decoration: none;">
27
+ <h3>Added</h3>
28
+ </a>
29
+ <ul>
30
+ <li><code>round</code> method</li>
31
+ </ul>
32
+
33
+ <a href="#200---2023-10-09" id="200---2023-10-09" style="color: inherit; text-decoration: none;">
34
+ <h2>[2.0.0] - 2023-10-09</h2>
35
+ </a>
36
+
37
+ <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
38
+ <h3>Breaking</h3>
39
+ </a>
40
+ <ul>
41
+ <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
42
+ transpile this lib yourself</li>
43
+ </ul>
44
+
45
+ <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
46
+ <h3>Added</h3>
47
+ </a>
48
+ <ul>
49
+ <li><code>serialize</code> method</li>
50
+ <li><code>deserialize</code> method</li>
51
+ <li><code>replaceDeep</code> method</li>
52
+ </ul>
53
+
22
54
  <a href="#190---2023-07-07" id="190---2023-07-07" style="color: inherit; text-decoration: none;">
23
55
  <h2>[1.9.0] - 2023-07-07</h2>
24
56
  </a>
25
57
 
26
- <a href="#added" id="added" style="color: inherit; text-decoration: none;">
58
+ <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
27
59
  <h3>Added</h3>
28
60
  </a>
29
61
  <ul>
@@ -45,7 +77,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
45
77
  <h2>[1.8.0] - 2023-06-03</h2>
46
78
  </a>
47
79
 
48
- <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
80
+ <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
49
81
  <h3>Added</h3>
50
82
  </a>
51
83
  <ul>
@@ -63,7 +95,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
63
95
  <h2>[1.7.0] - 2023-05-22</h2>
64
96
  </a>
65
97
 
66
- <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
98
+ <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
67
99
  <h3>Added</h3>
68
100
  </a>
69
101
  <ul>
@@ -74,7 +106,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
74
106
  <h2>[1.6.0] - 2023-05-12</h2>
75
107
  </a>
76
108
 
77
- <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
109
+ <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
78
110
  <h3>Added</h3>
79
111
  </a>
80
112
  <ul>
@@ -85,7 +117,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
85
117
  <h2>[1.5.0] - 2023-05-12</h2>
86
118
  </a>
87
119
 
88
- <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
120
+ <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
89
121
  <h3>Added</h3>
90
122
  </a>
91
123
  <ul>
@@ -97,7 +129,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
97
129
  <h2>[1.4.0] - 2023-05-11</h2>
98
130
  </a>
99
131
 
100
- <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
132
+ <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
101
133
  <h3>Added</h3>
102
134
  </a>
103
135
  <ul>
@@ -110,7 +142,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
110
142
  <h2>[1.3.0] - 2023-05-07</h2>
111
143
  </a>
112
144
 
113
- <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
145
+ <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
114
146
  <h3>Added</h3>
115
147
  </a>
116
148
  <ul>
@@ -129,7 +161,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
129
161
  <h2>[1.2.0] - 2023-03-01</h2>
130
162
  </a>
131
163
 
132
- <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
164
+ <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
133
165
  <h3>Added</h3>
134
166
  </a>
135
167
  <ul>
@@ -145,7 +177,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
145
177
  <h2>[1.1.0] - 2023-02-20</h2>
146
178
  </a>
147
179
 
148
- <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
180
+ <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
149
181
  <h3>Added</h3>
150
182
  </a>
151
183
  <ul>
@@ -164,14 +196,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
164
196
  <h2>[1.0.0] - 2023-02-19</h2>
165
197
  </a>
166
198
 
167
- <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
199
+ <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
168
200
  <h3>Added</h3>
169
201
  </a>
170
202
  <ul>
171
203
  <li><code>isPlainObject</code> method</li>
172
204
  </ul>
173
205
 
174
- <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
206
+ <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
175
207
  <h3>Breaking</h3>
176
208
  </a>
177
209
  <ul>
@@ -218,7 +250,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
218
250
  <h2>[0.24.0] - 2022-09-23</h2>
219
251
  </a>
220
252
 
221
- <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
253
+ <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
222
254
  <h3>Added</h3>
223
255
  </a>
224
256
  <ul>
@@ -266,7 +298,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
266
298
  <h2>[0.23.0] - 2022-07-17</h2>
267
299
  </a>
268
300
 
269
- <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
301
+ <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
270
302
  <h3>Added</h3>
271
303
  </a>
272
304
  <ul>
@@ -277,7 +309,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
277
309
  <h2>[0.22.0] - 2022-07-16</h2>
278
310
  </a>
279
311
 
280
- <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
312
+ <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
281
313
  <h3>Added</h3>
282
314
  </a>
283
315
  <ul>
@@ -295,7 +327,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
295
327
  <h2>[0.21.0] - 2022-07-08</h2>
296
328
  </a>
297
329
 
298
- <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
330
+ <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
299
331
  <h3>Added</h3>
300
332
  </a>
301
333
  <ul>
@@ -306,7 +338,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
306
338
  <h2>[0.20.0] - 2022-07-03</h2>
307
339
  </a>
308
340
 
309
- <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
341
+ <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
310
342
  <h3>Added</h3>
311
343
  </a>
312
344
  <ul>
@@ -328,7 +360,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
328
360
  <h2>[0.19.0] - 2022-04-27</h2>
329
361
  </a>
330
362
 
331
- <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
363
+ <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
332
364
  <h3>Added</h3>
333
365
  </a>
334
366
  <ul>
@@ -343,7 +375,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
343
375
  <li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
344
376
  </ul>
345
377
 
346
- <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
378
+ <a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
347
379
  <h3>Breaking</h3>
348
380
  </a>
349
381
  <ul>
@@ -354,7 +386,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
354
386
  <h2>[0.18.0] - 2021-12-04</h2>
355
387
  </a>
356
388
 
357
- <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
389
+ <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
358
390
  <h3>Added</h3>
359
391
  </a>
360
392
  <ul>
@@ -377,7 +409,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
377
409
  <h2>[0.17.0] - 2021-10-31</h2>
378
410
  </a>
379
411
 
380
- <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
412
+ <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
381
413
  <h3>Added</h3>
382
414
  </a>
383
415
  <ul>
@@ -395,7 +427,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
395
427
  <h2>[0.16.0] - 2021-09-24</h2>
396
428
  </a>
397
429
 
398
- <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
430
+ <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
399
431
  <h3>Added</h3>
400
432
  </a>
401
433
  <ul>
@@ -406,7 +438,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
406
438
  <h2>[0.15.0] - 2021-07-04</h2>
407
439
  </a>
408
440
 
409
- <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
441
+ <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
410
442
  <h3>Added</h3>
411
443
  </a>
412
444
  <ul>
@@ -442,7 +474,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
442
474
  <li>upgraded typings for sortBy</li>
443
475
  </ul>
444
476
 
445
- <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
477
+ <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
446
478
  <h3>Added</h3>
447
479
  </a>
448
480
  <ul>
@@ -484,7 +516,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
484
516
  <h2>[0.13.0] - 2021-02-03</h2>
485
517
  </a>
486
518
 
487
- <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
519
+ <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
488
520
  <h3>Added</h3>
489
521
  </a>
490
522
  <ul>
@@ -497,7 +529,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
497
529
  <h2>[0.12.0] - 2021-01-19</h2>
498
530
  </a>
499
531
 
500
- <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
532
+ <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
501
533
  <h3>Added</h3>
502
534
  </a>
503
535
  <ul>
@@ -539,7 +571,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
539
571
  <h2>[0.10.0] - 2020-09-14</h2>
540
572
  </a>
541
573
 
542
- <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
574
+ <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
543
575
  <h3>Added</h3>
544
576
  </a>
545
577
  <ul>
@@ -550,7 +582,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
550
582
  <h2>[0.9.0] - 2020-07-09</h2>
551
583
  </a>
552
584
 
553
- <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
585
+ <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
554
586
  <h3>Added</h3>
555
587
  </a>
556
588
  <ul>
@@ -591,7 +623,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
591
623
  <h2>[0.7.0] - 2020-03-10</h2>
592
624
  </a>
593
625
 
594
- <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
626
+ <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
595
627
  <h3>Added</h3>
596
628
  </a>
597
629
  <ul>
@@ -650,7 +682,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
650
682
  <h2>[0.6.0] - 2019-05-12</h2>
651
683
  </a>
652
684
 
653
- <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
685
+ <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
654
686
  <h3>Added</h3>
655
687
  </a>
656
688
  <ul>
@@ -668,7 +700,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
668
700
  <h2>[0.5.0] - 2019-04-09</h2>
669
701
  </a>
670
702
 
671
- <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
703
+ <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
672
704
  <h3>Added</h3>
673
705
  </a>
674
706
  <ul>
@@ -690,7 +722,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
690
722
  <h2>[0.4.0] - 2019-01-30</h2>
691
723
  </a>
692
724
 
693
- <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
725
+ <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
694
726
  <h3>Added</h3>
695
727
  </a>
696
728
  <ul>
@@ -727,7 +759,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
727
759
  <li>improved one <code>set</code> test</li>
728
760
  </ul>
729
761
 
730
- <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
762
+ <a href="#added-31" id="added-31" style="color: inherit; text-decoration: none;">
731
763
  <h3>Added</h3>
732
764
  </a>
733
765
  <ul>
@@ -738,7 +770,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
738
770
  <h2>[0.2.0] 2018-12-09</h2>
739
771
  </a>
740
772
 
741
- <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
773
+ <a href="#added-32" id="added-32" style="color: inherit; text-decoration: none;">
742
774
  <h3>Added</h3>
743
775
  </a>
744
776
  <ul>
@@ -765,7 +797,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
765
797
  <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
798
  <div class="tsd-accordion-details">
767
799
  <ul>
768
- <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.9.0</a>
800
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.1.0</a>
769
801
  <ul>
770
802
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
771
803
  <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 +812,9 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
780
812
  <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
813
  <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
814
  <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>
815
+ <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>
816
+ <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>
817
+ <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
818
  <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
819
  <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
820
  <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 +829,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
795
829
  <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
830
  <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
831
  <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>
832
+ <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
833
  <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
834
  <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
835
  <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 +859,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
824
859
  <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
860
  <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
861
  <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>
862
+ <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
863
  <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>
864
+ <li class="tsd-kind-function"><a href="../functions/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>
828
865
  <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
866
  <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
867
  <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
868
  <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>
869
+ <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
870
  <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
871
  <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
872
  <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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v2.1.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - 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.1.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v1.9.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v2.1.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.1.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,14 @@
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>
103
+ <li class="tsd-kind-function"><a href="../functions/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>
99
104
  <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
105
  <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
106
  <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
107
  <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>
108
+ <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
109
  <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
110
  <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
111
  <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>