@ezez/utils 1.8.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -1
- package/README.md +3 -0
- package/dist/deserialize.d.ts +13 -0
- package/dist/deserialize.d.ts.map +1 -0
- package/dist/deserialize.js +42 -0
- package/dist/deserialize.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/omit.js +3 -1
- package/dist/omit.js.map +1 -1
- package/dist/removeCommonProperties.d.ts +4 -0
- package/dist/removeCommonProperties.d.ts.map +1 -0
- package/dist/removeCommonProperties.js +15 -0
- package/dist/removeCommonProperties.js.map +1 -0
- package/dist/replace.d.ts.map +1 -1
- package/dist/replace.js.map +1 -1
- package/dist/replaceDeep.d.ts +3 -0
- package/dist/replaceDeep.d.ts.map +1 -0
- package/dist/replaceDeep.js +26 -0
- package/dist/replaceDeep.js.map +1 -0
- package/dist/safe.d.ts.map +1 -1
- package/dist/safe.js +1 -1
- package/dist/safe.js.map +1 -1
- package/dist/serialize.d.ts +16 -0
- package/dist/serialize.d.ts.map +1 -0
- package/dist/serialize.js +61 -0
- package/dist/serialize.js.map +1 -0
- package/dist/setImmutable.js +1 -1
- package/dist/setImmutable.js.map +1 -1
- package/dist/sortBy.js +1 -2
- package/dist/sortBy.js.map +1 -1
- package/dist/sortProps.d.ts.map +1 -1
- package/dist/sortProps.js.map +1 -1
- package/dist/throttle.js +5 -7
- package/dist/throttle.js.map +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +12 -6
- package/docs/functions/capitalize.html +12 -6
- package/docs/functions/coalesce.html +12 -6
- package/docs/functions/compareArrays.html +12 -6
- package/docs/functions/compareProps.html +12 -6
- package/docs/functions/deserialize.html +148 -0
- package/docs/functions/ensureArray.html +12 -6
- package/docs/functions/ensureDate.html +12 -6
- package/docs/functions/ensureError.html +12 -6
- package/docs/functions/ensurePrefix.html +12 -6
- package/docs/functions/ensureSuffix.html +12 -6
- package/docs/functions/ensureTimestamp.html +12 -6
- package/docs/functions/escapeRegExp.html +12 -6
- package/docs/functions/formatDate.html +12 -6
- package/docs/functions/get.html +12 -6
- package/docs/functions/getMultiple.html +12 -6
- package/docs/functions/insertSeparator.html +12 -6
- package/docs/functions/isEmpty.html +12 -6
- package/docs/functions/isNumericString.html +12 -6
- package/docs/functions/isPlainObject.html +12 -6
- package/docs/functions/last.html +12 -6
- package/docs/functions/later-1.html +12 -6
- package/docs/functions/mapAsync.html +12 -6
- package/docs/functions/mapValues.html +12 -6
- package/docs/functions/match.html +12 -6
- package/docs/functions/merge.html +20 -14
- package/docs/functions/mostFrequent.html +12 -6
- package/docs/functions/noop.html +12 -6
- package/docs/functions/occurrences.html +12 -6
- package/docs/functions/omit.html +12 -6
- package/docs/functions/pick.html +12 -6
- package/docs/functions/pull.html +12 -6
- package/docs/functions/remove.html +12 -6
- package/docs/functions/removeCommonProperties.html +156 -0
- package/docs/functions/replace.html +12 -6
- package/docs/functions/replaceDeep.html +153 -0
- package/docs/functions/rethrow.html +12 -6
- package/docs/functions/safe.html +13 -7
- package/docs/functions/scale.html +12 -6
- package/docs/functions/seq.html +12 -6
- package/docs/functions/seqEarlyBreak.html +12 -6
- package/docs/functions/serialize.html +153 -0
- package/docs/functions/set.html +12 -6
- package/docs/functions/setImmutable.html +12 -6
- package/docs/functions/sortBy.html +12 -6
- package/docs/functions/sortProps.html +15 -7
- package/docs/functions/stripPrefix.html +12 -6
- package/docs/functions/stripSuffix.html +12 -6
- package/docs/functions/throttle.html +12 -6
- package/docs/functions/truthy.html +12 -6
- package/docs/functions/unique.html +12 -6
- package/docs/functions/wait.html +12 -6
- package/docs/functions/waitFor.html +12 -6
- package/docs/functions/waitSync.html +12 -6
- package/docs/index.html +14 -5
- package/docs/interfaces/ComparePropsOptions.html +6 -6
- package/docs/interfaces/GetMultipleSource.html +12 -6
- package/docs/interfaces/GetSource.html +12 -6
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +12 -6
- package/docs/interfaces/SetSource.html +12 -6
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +17 -5
- package/docs/pages/CHANGELOG.html +76 -38
- package/docs/pages/Introduction.html +11 -5
- package/docs/types/CustomDeserializers.html +151 -0
- package/docs/types/CustomSerializers.html +151 -0
- package/docs/types/Later.html +12 -6
- package/docs/types/MapValuesFn.html +12 -6
- package/docs/types/MatchCallback.html +12 -6
- package/docs/types/SeqEarlyBreaker.html +12 -6
- package/docs/types/SeqFn.html +12 -6
- package/docs/types/SeqFunctions.html +12 -6
- package/docs/types/SetImmutablePath.html +12 -6
- package/docs/types/ThrottledFunction.html +12 -6
- package/docs/variables/mapValuesUNSET.html +12 -6
- package/docs/variables/mergeUNSET.html +12 -6
- package/esm/deserialize.d.ts +13 -0
- package/esm/deserialize.d.ts.map +1 -0
- package/esm/deserialize.js +39 -0
- package/esm/deserialize.js.map +1 -0
- package/esm/index.d.ts +4 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +4 -0
- package/esm/index.js.map +1 -1
- package/esm/removeCommonProperties.d.ts +4 -0
- package/esm/removeCommonProperties.d.ts.map +1 -0
- package/esm/removeCommonProperties.js +12 -0
- package/esm/removeCommonProperties.js.map +1 -0
- package/esm/replace.d.ts.map +1 -1
- package/esm/replace.js.map +1 -1
- package/esm/replaceDeep.d.ts +3 -0
- package/esm/replaceDeep.d.ts.map +1 -0
- package/esm/replaceDeep.js +23 -0
- package/esm/replaceDeep.js.map +1 -0
- package/esm/safe.d.ts.map +1 -1
- package/esm/safe.js.map +1 -1
- package/esm/serialize.d.ts +16 -0
- package/esm/serialize.d.ts.map +1 -0
- package/esm/serialize.js +58 -0
- package/esm/serialize.js.map +1 -0
- package/esm/sortBy.js +1 -2
- package/esm/sortBy.js.map +1 -1
- package/esm/sortProps.d.ts.map +1 -1
- package/esm/sortProps.js.map +1 -1
- package/esm/throttle.js +5 -7
- package/esm/throttle.js.map +1 -1
- package/package.json +28 -27
- package/pnpm-lock.yaml +5223 -0
- package/src/deserialize.spec.ts +69 -0
- package/src/deserialize.ts +74 -0
- package/src/index.ts +4 -0
- package/src/removeCommonProperties.spec.ts +34 -0
- package/src/removeCommonProperties.ts +39 -0
- package/src/replace.ts +0 -1
- package/src/replaceDeep.spec.ts +71 -0
- package/src/replaceDeep.ts +44 -0
- package/src/safe.ts +0 -1
- package/src/serialize.spec.ts +83 -0
- package/src/serialize.ts +102 -0
- package/src/sortProps.ts +4 -1
- package/babel.config.cjs +0 -6
|
@@ -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 -
|
|
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,19 +6,51 @@
|
|
|
6
6
|
<div id="tsd-toolbar-links"></div></div>
|
|
7
7
|
<ul class="results">
|
|
8
8
|
<li class="state loading">Preparing search index...</li>
|
|
9
|
-
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils -
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.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 -
|
|
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="
|
|
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
|
+
|
|
43
|
+
<a href="#190---2023-07-07" id="190---2023-07-07" style="color: inherit; text-decoration: none;">
|
|
44
|
+
<h2>[1.9.0] - 2023-07-07</h2>
|
|
45
|
+
</a>
|
|
46
|
+
|
|
47
|
+
<a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
|
|
48
|
+
<h3>Added</h3>
|
|
49
|
+
</a>
|
|
50
|
+
<ul>
|
|
51
|
+
<li><code>removeCommonProperties</code> method</li>
|
|
52
|
+
</ul>
|
|
53
|
+
|
|
22
54
|
<a href="#181---2023-06-24" id="181---2023-06-24" style="color: inherit; text-decoration: none;">
|
|
23
55
|
<h2>[1.8.1] - 2023-06-24</h2>
|
|
24
56
|
</a>
|
|
@@ -34,7 +66,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
34
66
|
<h2>[1.8.0] - 2023-06-03</h2>
|
|
35
67
|
</a>
|
|
36
68
|
|
|
37
|
-
<a href="#added" id="added" style="color: inherit; text-decoration: none;">
|
|
69
|
+
<a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
|
|
38
70
|
<h3>Added</h3>
|
|
39
71
|
</a>
|
|
40
72
|
<ul>
|
|
@@ -52,7 +84,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
52
84
|
<h2>[1.7.0] - 2023-05-22</h2>
|
|
53
85
|
</a>
|
|
54
86
|
|
|
55
|
-
<a href="#added-
|
|
87
|
+
<a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
|
|
56
88
|
<h3>Added</h3>
|
|
57
89
|
</a>
|
|
58
90
|
<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.6.0] - 2023-05-12</h2>
|
|
64
96
|
</a>
|
|
65
97
|
|
|
66
|
-
<a href="#added-
|
|
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.5.0] - 2023-05-12</h2>
|
|
75
107
|
</a>
|
|
76
108
|
|
|
77
|
-
<a href="#added-
|
|
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>
|
|
@@ -86,7 +118,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
86
118
|
<h2>[1.4.0] - 2023-05-11</h2>
|
|
87
119
|
</a>
|
|
88
120
|
|
|
89
|
-
<a href="#added-
|
|
121
|
+
<a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
|
|
90
122
|
<h3>Added</h3>
|
|
91
123
|
</a>
|
|
92
124
|
<ul>
|
|
@@ -99,7 +131,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
99
131
|
<h2>[1.3.0] - 2023-05-07</h2>
|
|
100
132
|
</a>
|
|
101
133
|
|
|
102
|
-
<a href="#added-
|
|
134
|
+
<a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
|
|
103
135
|
<h3>Added</h3>
|
|
104
136
|
</a>
|
|
105
137
|
<ul>
|
|
@@ -118,7 +150,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
118
150
|
<h2>[1.2.0] - 2023-03-01</h2>
|
|
119
151
|
</a>
|
|
120
152
|
|
|
121
|
-
<a href="#added-
|
|
153
|
+
<a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
|
|
122
154
|
<h3>Added</h3>
|
|
123
155
|
</a>
|
|
124
156
|
<ul>
|
|
@@ -134,7 +166,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
134
166
|
<h2>[1.1.0] - 2023-02-20</h2>
|
|
135
167
|
</a>
|
|
136
168
|
|
|
137
|
-
<a href="#added-
|
|
169
|
+
<a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
|
|
138
170
|
<h3>Added</h3>
|
|
139
171
|
</a>
|
|
140
172
|
<ul>
|
|
@@ -153,14 +185,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
153
185
|
<h2>[1.0.0] - 2023-02-19</h2>
|
|
154
186
|
</a>
|
|
155
187
|
|
|
156
|
-
<a href="#added-
|
|
188
|
+
<a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
|
|
157
189
|
<h3>Added</h3>
|
|
158
190
|
</a>
|
|
159
191
|
<ul>
|
|
160
192
|
<li><code>isPlainObject</code> method</li>
|
|
161
193
|
</ul>
|
|
162
194
|
|
|
163
|
-
<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;">
|
|
164
196
|
<h3>Breaking</h3>
|
|
165
197
|
</a>
|
|
166
198
|
<ul>
|
|
@@ -207,7 +239,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
207
239
|
<h2>[0.24.0] - 2022-09-23</h2>
|
|
208
240
|
</a>
|
|
209
241
|
|
|
210
|
-
<a href="#added-
|
|
242
|
+
<a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
|
|
211
243
|
<h3>Added</h3>
|
|
212
244
|
</a>
|
|
213
245
|
<ul>
|
|
@@ -255,7 +287,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
255
287
|
<h2>[0.23.0] - 2022-07-17</h2>
|
|
256
288
|
</a>
|
|
257
289
|
|
|
258
|
-
<a href="#added-
|
|
290
|
+
<a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
|
|
259
291
|
<h3>Added</h3>
|
|
260
292
|
</a>
|
|
261
293
|
<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.22.0] - 2022-07-16</h2>
|
|
267
299
|
</a>
|
|
268
300
|
|
|
269
|
-
<a href="#added-
|
|
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>
|
|
@@ -284,7 +316,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
284
316
|
<h2>[0.21.0] - 2022-07-08</h2>
|
|
285
317
|
</a>
|
|
286
318
|
|
|
287
|
-
<a href="#added-
|
|
319
|
+
<a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
|
|
288
320
|
<h3>Added</h3>
|
|
289
321
|
</a>
|
|
290
322
|
<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.20.0] - 2022-07-03</h2>
|
|
296
328
|
</a>
|
|
297
329
|
|
|
298
|
-
<a href="#added-
|
|
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>
|
|
@@ -317,7 +349,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
317
349
|
<h2>[0.19.0] - 2022-04-27</h2>
|
|
318
350
|
</a>
|
|
319
351
|
|
|
320
|
-
<a href="#added-
|
|
352
|
+
<a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
|
|
321
353
|
<h3>Added</h3>
|
|
322
354
|
</a>
|
|
323
355
|
<ul>
|
|
@@ -332,7 +364,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
332
364
|
<li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
|
|
333
365
|
</ul>
|
|
334
366
|
|
|
335
|
-
<a href="#breaking-
|
|
367
|
+
<a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
|
|
336
368
|
<h3>Breaking</h3>
|
|
337
369
|
</a>
|
|
338
370
|
<ul>
|
|
@@ -343,7 +375,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
343
375
|
<h2>[0.18.0] - 2021-12-04</h2>
|
|
344
376
|
</a>
|
|
345
377
|
|
|
346
|
-
<a href="#added-
|
|
378
|
+
<a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
|
|
347
379
|
<h3>Added</h3>
|
|
348
380
|
</a>
|
|
349
381
|
<ul>
|
|
@@ -366,7 +398,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
366
398
|
<h2>[0.17.0] - 2021-10-31</h2>
|
|
367
399
|
</a>
|
|
368
400
|
|
|
369
|
-
<a href="#added-
|
|
401
|
+
<a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
|
|
370
402
|
<h3>Added</h3>
|
|
371
403
|
</a>
|
|
372
404
|
<ul>
|
|
@@ -384,7 +416,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
384
416
|
<h2>[0.16.0] - 2021-09-24</h2>
|
|
385
417
|
</a>
|
|
386
418
|
|
|
387
|
-
<a href="#added-
|
|
419
|
+
<a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
|
|
388
420
|
<h3>Added</h3>
|
|
389
421
|
</a>
|
|
390
422
|
<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.15.0] - 2021-07-04</h2>
|
|
396
428
|
</a>
|
|
397
429
|
|
|
398
|
-
<a href="#added-
|
|
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>
|
|
@@ -431,7 +463,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
431
463
|
<li>upgraded typings for sortBy</li>
|
|
432
464
|
</ul>
|
|
433
465
|
|
|
434
|
-
<a href="#added-
|
|
466
|
+
<a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
|
|
435
467
|
<h3>Added</h3>
|
|
436
468
|
</a>
|
|
437
469
|
<ul>
|
|
@@ -473,7 +505,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
473
505
|
<h2>[0.13.0] - 2021-02-03</h2>
|
|
474
506
|
</a>
|
|
475
507
|
|
|
476
|
-
<a href="#added-
|
|
508
|
+
<a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
|
|
477
509
|
<h3>Added</h3>
|
|
478
510
|
</a>
|
|
479
511
|
<ul>
|
|
@@ -486,7 +518,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
486
518
|
<h2>[0.12.0] - 2021-01-19</h2>
|
|
487
519
|
</a>
|
|
488
520
|
|
|
489
|
-
<a href="#added-
|
|
521
|
+
<a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
|
|
490
522
|
<h3>Added</h3>
|
|
491
523
|
</a>
|
|
492
524
|
<ul>
|
|
@@ -528,7 +560,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
528
560
|
<h2>[0.10.0] - 2020-09-14</h2>
|
|
529
561
|
</a>
|
|
530
562
|
|
|
531
|
-
<a href="#added-
|
|
563
|
+
<a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
|
|
532
564
|
<h3>Added</h3>
|
|
533
565
|
</a>
|
|
534
566
|
<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.9.0] - 2020-07-09</h2>
|
|
540
572
|
</a>
|
|
541
573
|
|
|
542
|
-
<a href="#added-
|
|
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>
|
|
@@ -580,7 +612,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
580
612
|
<h2>[0.7.0] - 2020-03-10</h2>
|
|
581
613
|
</a>
|
|
582
614
|
|
|
583
|
-
<a href="#added-
|
|
615
|
+
<a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
|
|
584
616
|
<h3>Added</h3>
|
|
585
617
|
</a>
|
|
586
618
|
<ul>
|
|
@@ -639,7 +671,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
639
671
|
<h2>[0.6.0] - 2019-05-12</h2>
|
|
640
672
|
</a>
|
|
641
673
|
|
|
642
|
-
<a href="#added-
|
|
674
|
+
<a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
|
|
643
675
|
<h3>Added</h3>
|
|
644
676
|
</a>
|
|
645
677
|
<ul>
|
|
@@ -657,7 +689,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
657
689
|
<h2>[0.5.0] - 2019-04-09</h2>
|
|
658
690
|
</a>
|
|
659
691
|
|
|
660
|
-
<a href="#added-
|
|
692
|
+
<a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
|
|
661
693
|
<h3>Added</h3>
|
|
662
694
|
</a>
|
|
663
695
|
<ul>
|
|
@@ -679,7 +711,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
679
711
|
<h2>[0.4.0] - 2019-01-30</h2>
|
|
680
712
|
</a>
|
|
681
713
|
|
|
682
|
-
<a href="#added-
|
|
714
|
+
<a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
|
|
683
715
|
<h3>Added</h3>
|
|
684
716
|
</a>
|
|
685
717
|
<ul>
|
|
@@ -716,7 +748,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
716
748
|
<li>improved one <code>set</code> test</li>
|
|
717
749
|
</ul>
|
|
718
750
|
|
|
719
|
-
<a href="#added-
|
|
751
|
+
<a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
|
|
720
752
|
<h3>Added</h3>
|
|
721
753
|
</a>
|
|
722
754
|
<ul>
|
|
@@ -727,7 +759,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
727
759
|
<h2>[0.2.0] 2018-12-09</h2>
|
|
728
760
|
</a>
|
|
729
761
|
|
|
730
|
-
<a href="#added-
|
|
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>
|
|
@@ -754,7 +786,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
754
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>
|
|
755
787
|
<div class="tsd-accordion-details">
|
|
756
788
|
<ul>
|
|
757
|
-
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/>
|
|
789
|
+
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
|
|
758
790
|
<ul>
|
|
759
791
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
|
|
760
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>
|
|
@@ -769,7 +801,9 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
769
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>
|
|
770
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>
|
|
771
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>
|
|
772
|
-
<li class="tsd-kind-type-alias"><a href="../types/
|
|
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>
|
|
773
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>
|
|
774
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>
|
|
775
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>
|
|
@@ -784,6 +818,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
784
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>
|
|
785
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>
|
|
786
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>
|
|
787
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>
|
|
788
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>
|
|
789
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>
|
|
@@ -811,12 +846,15 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
811
846
|
<li class="tsd-kind-function"><a href="../functions/pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
|
|
812
847
|
<li class="tsd-kind-function"><a href="../functions/pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
|
|
813
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>
|
|
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>
|
|
814
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>
|
|
815
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>
|
|
816
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>
|
|
817
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>
|
|
818
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>
|
|
819
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>
|
|
820
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>
|
|
821
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>
|
|
822
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 -
|
|
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 -
|
|
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 -
|
|
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/>
|
|
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/
|
|
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>
|
|
@@ -93,12 +96,15 @@
|
|
|
93
96
|
<li class="tsd-kind-function"><a href="../functions/pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
|
|
94
97
|
<li class="tsd-kind-function"><a href="../functions/pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
|
|
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>
|
|
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>
|
|
96
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>
|
|
97
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>
|
|
98
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>
|
|
99
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>
|
|
100
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>
|
|
101
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>
|
|
102
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>
|
|
103
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>
|
|
104
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>
|