@ezez/utils 1.5.0 → 1.7.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 +8 -0
- package/README.md +2 -0
- package/dist/compareProps.d.ts +7 -0
- package/dist/compareProps.d.ts.map +1 -0
- package/dist/compareProps.js +14 -0
- package/dist/compareProps.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/later.d.ts +9 -0
- package/dist/later.d.ts.map +1 -0
- package/dist/later.js +13 -0
- package/dist/later.js.map +1 -0
- package/docs/assets/highlight.css +7 -0
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +11 -7
- package/docs/functions/capitalize.html +11 -7
- package/docs/functions/coalesce.html +11 -7
- package/docs/functions/compareArrays.html +11 -7
- package/docs/functions/compareProps.html +149 -0
- package/docs/functions/ensureArray.html +11 -7
- package/docs/functions/ensureDate.html +11 -7
- package/docs/functions/ensureError.html +11 -7
- package/docs/functions/ensurePrefix.html +11 -7
- package/docs/functions/ensureSuffix.html +11 -7
- package/docs/functions/ensureTimestamp.html +11 -7
- package/docs/functions/escapeRegExp.html +11 -7
- package/docs/functions/get.html +11 -7
- package/docs/functions/getMultiple.html +11 -7
- package/docs/functions/insertSeparator.html +11 -7
- package/docs/functions/isEmpty.html +11 -7
- package/docs/functions/isNumericString.html +11 -7
- package/docs/functions/isPlainObject.html +11 -7
- package/docs/functions/last.html +11 -7
- package/docs/functions/later-1.html +132 -0
- package/docs/functions/mapAsync.html +11 -7
- package/docs/functions/mapValues.html +11 -7
- package/docs/functions/match.html +11 -7
- package/docs/functions/merge.html +19 -15
- package/docs/functions/mostFrequent.html +11 -7
- package/docs/functions/noop.html +11 -7
- package/docs/functions/occurrences.html +11 -7
- package/docs/functions/omit.html +11 -7
- package/docs/functions/pick.html +11 -7
- package/docs/functions/pull.html +11 -7
- package/docs/functions/remove.html +11 -7
- package/docs/functions/replace.html +11 -7
- package/docs/functions/rethrow.html +11 -7
- package/docs/functions/safe.html +12 -8
- package/docs/functions/scale.html +11 -7
- package/docs/functions/seq.html +11 -7
- package/docs/functions/seqEarlyBreak.html +11 -7
- package/docs/functions/set.html +11 -7
- package/docs/functions/setImmutable.html +11 -7
- package/docs/functions/sortBy.html +11 -7
- package/docs/functions/sortProps.html +11 -7
- package/docs/functions/stripPrefix.html +11 -7
- package/docs/functions/stripSuffix.html +11 -7
- package/docs/functions/throttle.html +11 -7
- package/docs/functions/truthy.html +11 -7
- package/docs/functions/unique.html +11 -7
- package/docs/functions/wait.html +11 -7
- package/docs/functions/waitFor.html +11 -7
- package/docs/functions/waitSync.html +11 -7
- package/docs/index.html +12 -6
- package/docs/interfaces/ComparePropsOptions.html +70 -0
- package/docs/interfaces/GetMultipleSource.html +11 -7
- package/docs/interfaces/GetSource.html +11 -7
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +11 -7
- package/docs/interfaces/SetSource.html +11 -7
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +14 -6
- package/docs/pages/CHANGELOG.html +59 -33
- package/docs/pages/Introduction.html +10 -6
- package/docs/types/Later.html +158 -0
- package/docs/types/MapValuesFn.html +11 -7
- package/docs/types/MatchCallback.html +11 -7
- package/docs/types/SeqEarlyBreaker.html +11 -7
- package/docs/types/SeqFn.html +11 -7
- package/docs/types/SeqFunctions.html +11 -7
- package/docs/types/SetImmutablePath.html +11 -7
- package/docs/types/ThrottledFunction.html +11 -7
- package/docs/variables/mapValuesUNSET.html +11 -7
- package/docs/variables/mergeUNSET.html +11 -7
- package/esm/compareProps.d.ts +7 -0
- package/esm/compareProps.d.ts.map +1 -0
- package/esm/compareProps.js +11 -0
- package/esm/compareProps.js.map +1 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -0
- package/esm/index.js.map +1 -1
- package/esm/later.d.ts +9 -0
- package/esm/later.d.ts.map +1 -0
- package/esm/later.js +10 -0
- package/esm/later.js.map +1 -0
- package/package.json +1 -1
- package/src/compareArrays.spec.ts +29 -3
- package/src/compareProps.spec.ts +68 -0
- package/src/compareProps.ts +33 -0
- package/src/index.ts +2 -0
- package/src/later.spec.ts +33 -0
- package/src/later.ts +42 -0
- package/src/unique.spec.ts +1 -1
|
@@ -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.
|
|
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.7.0</title><meta name="description" content="Documentation for @ezez/utils - v1.7.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,46 @@
|
|
|
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
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.7.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.
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v1.7.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
19
|
<p>The format is based on <a href="http://keepachangelog.com/en/1.0.0/">Keep a 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="#170---2023-05-22" id="170---2023-05-22" style="color: inherit; text-decoration: none;">
|
|
23
|
+
<h2>[1.7.0] - 2023-05-22</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>later</code> method</li>
|
|
31
|
+
</ul>
|
|
32
|
+
|
|
33
|
+
<a href="#160---2023-05-12" id="160---2023-05-12" style="color: inherit; text-decoration: none;">
|
|
34
|
+
<h2>[1.6.0] - 2023-05-12</h2>
|
|
35
|
+
</a>
|
|
36
|
+
|
|
37
|
+
<a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
|
|
38
|
+
<h3>Added</h3>
|
|
39
|
+
</a>
|
|
40
|
+
<ul>
|
|
41
|
+
<li><code>compareProps</code> method</li>
|
|
42
|
+
</ul>
|
|
43
|
+
|
|
22
44
|
<a href="#150---2023-05-12" id="150---2023-05-12" style="color: inherit; text-decoration: none;">
|
|
23
45
|
<h2>[1.5.0] - 2023-05-12</h2>
|
|
24
46
|
</a>
|
|
25
47
|
|
|
26
|
-
<a href="#added" id="added" style="color: inherit; text-decoration: none;">
|
|
48
|
+
<a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
|
|
27
49
|
<h3>Added</h3>
|
|
28
50
|
</a>
|
|
29
51
|
<ul>
|
|
@@ -35,7 +57,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
35
57
|
<h2>[1.4.0] - 2023-05-11</h2>
|
|
36
58
|
</a>
|
|
37
59
|
|
|
38
|
-
<a href="#added-
|
|
60
|
+
<a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
|
|
39
61
|
<h3>Added</h3>
|
|
40
62
|
</a>
|
|
41
63
|
<ul>
|
|
@@ -48,7 +70,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
48
70
|
<h2>[1.3.0] - 2023-05-07</h2>
|
|
49
71
|
</a>
|
|
50
72
|
|
|
51
|
-
<a href="#added-
|
|
73
|
+
<a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
|
|
52
74
|
<h3>Added</h3>
|
|
53
75
|
</a>
|
|
54
76
|
<ul>
|
|
@@ -67,7 +89,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
67
89
|
<h2>[1.2.0] - 2023-03-01</h2>
|
|
68
90
|
</a>
|
|
69
91
|
|
|
70
|
-
<a href="#added-
|
|
92
|
+
<a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
|
|
71
93
|
<h3>Added</h3>
|
|
72
94
|
</a>
|
|
73
95
|
<ul>
|
|
@@ -83,7 +105,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
83
105
|
<h2>[1.1.0] - 2023-02-20</h2>
|
|
84
106
|
</a>
|
|
85
107
|
|
|
86
|
-
<a href="#added-
|
|
108
|
+
<a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
|
|
87
109
|
<h3>Added</h3>
|
|
88
110
|
</a>
|
|
89
111
|
<ul>
|
|
@@ -102,7 +124,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
102
124
|
<h2>[1.0.0] - 2023-02-19</h2>
|
|
103
125
|
</a>
|
|
104
126
|
|
|
105
|
-
<a href="#added-
|
|
127
|
+
<a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
|
|
106
128
|
<h3>Added</h3>
|
|
107
129
|
</a>
|
|
108
130
|
<ul>
|
|
@@ -156,7 +178,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
156
178
|
<h2>[0.24.0] - 2022-09-23</h2>
|
|
157
179
|
</a>
|
|
158
180
|
|
|
159
|
-
<a href="#added-
|
|
181
|
+
<a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
|
|
160
182
|
<h3>Added</h3>
|
|
161
183
|
</a>
|
|
162
184
|
<ul>
|
|
@@ -204,7 +226,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
204
226
|
<h2>[0.23.0] - 2022-07-17</h2>
|
|
205
227
|
</a>
|
|
206
228
|
|
|
207
|
-
<a href="#added-
|
|
229
|
+
<a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
|
|
208
230
|
<h3>Added</h3>
|
|
209
231
|
</a>
|
|
210
232
|
<ul>
|
|
@@ -215,7 +237,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
215
237
|
<h2>[0.22.0] - 2022-07-16</h2>
|
|
216
238
|
</a>
|
|
217
239
|
|
|
218
|
-
<a href="#added-
|
|
240
|
+
<a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
|
|
219
241
|
<h3>Added</h3>
|
|
220
242
|
</a>
|
|
221
243
|
<ul>
|
|
@@ -233,7 +255,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
233
255
|
<h2>[0.21.0] - 2022-07-08</h2>
|
|
234
256
|
</a>
|
|
235
257
|
|
|
236
|
-
<a href="#added-
|
|
258
|
+
<a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
|
|
237
259
|
<h3>Added</h3>
|
|
238
260
|
</a>
|
|
239
261
|
<ul>
|
|
@@ -244,7 +266,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
244
266
|
<h2>[0.20.0] - 2022-07-03</h2>
|
|
245
267
|
</a>
|
|
246
268
|
|
|
247
|
-
<a href="#added-
|
|
269
|
+
<a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
|
|
248
270
|
<h3>Added</h3>
|
|
249
271
|
</a>
|
|
250
272
|
<ul>
|
|
@@ -266,7 +288,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
266
288
|
<h2>[0.19.0] - 2022-04-27</h2>
|
|
267
289
|
</a>
|
|
268
290
|
|
|
269
|
-
<a href="#added-
|
|
291
|
+
<a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
|
|
270
292
|
<h3>Added</h3>
|
|
271
293
|
</a>
|
|
272
294
|
<ul>
|
|
@@ -292,7 +314,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
292
314
|
<h2>[0.18.0] - 2021-12-04</h2>
|
|
293
315
|
</a>
|
|
294
316
|
|
|
295
|
-
<a href="#added-
|
|
317
|
+
<a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
|
|
296
318
|
<h3>Added</h3>
|
|
297
319
|
</a>
|
|
298
320
|
<ul>
|
|
@@ -315,7 +337,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
315
337
|
<h2>[0.17.0] - 2021-10-31</h2>
|
|
316
338
|
</a>
|
|
317
339
|
|
|
318
|
-
<a href="#added-
|
|
340
|
+
<a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
|
|
319
341
|
<h3>Added</h3>
|
|
320
342
|
</a>
|
|
321
343
|
<ul>
|
|
@@ -333,7 +355,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
333
355
|
<h2>[0.16.0] - 2021-09-24</h2>
|
|
334
356
|
</a>
|
|
335
357
|
|
|
336
|
-
<a href="#added-
|
|
358
|
+
<a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
|
|
337
359
|
<h3>Added</h3>
|
|
338
360
|
</a>
|
|
339
361
|
<ul>
|
|
@@ -344,7 +366,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
344
366
|
<h2>[0.15.0] - 2021-07-04</h2>
|
|
345
367
|
</a>
|
|
346
368
|
|
|
347
|
-
<a href="#added-
|
|
369
|
+
<a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
|
|
348
370
|
<h3>Added</h3>
|
|
349
371
|
</a>
|
|
350
372
|
<ul>
|
|
@@ -380,7 +402,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
380
402
|
<li>upgraded typings for sortBy</li>
|
|
381
403
|
</ul>
|
|
382
404
|
|
|
383
|
-
<a href="#added-
|
|
405
|
+
<a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
|
|
384
406
|
<h3>Added</h3>
|
|
385
407
|
</a>
|
|
386
408
|
<ul>
|
|
@@ -422,7 +444,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
422
444
|
<h2>[0.13.0] - 2021-02-03</h2>
|
|
423
445
|
</a>
|
|
424
446
|
|
|
425
|
-
<a href="#added-
|
|
447
|
+
<a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
|
|
426
448
|
<h3>Added</h3>
|
|
427
449
|
</a>
|
|
428
450
|
<ul>
|
|
@@ -435,7 +457,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
435
457
|
<h2>[0.12.0] - 2021-01-19</h2>
|
|
436
458
|
</a>
|
|
437
459
|
|
|
438
|
-
<a href="#added-
|
|
460
|
+
<a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
|
|
439
461
|
<h3>Added</h3>
|
|
440
462
|
</a>
|
|
441
463
|
<ul>
|
|
@@ -477,7 +499,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
477
499
|
<h2>[0.10.0] - 2020-09-14</h2>
|
|
478
500
|
</a>
|
|
479
501
|
|
|
480
|
-
<a href="#added-
|
|
502
|
+
<a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
|
|
481
503
|
<h3>Added</h3>
|
|
482
504
|
</a>
|
|
483
505
|
<ul>
|
|
@@ -488,7 +510,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
488
510
|
<h2>[0.9.0] - 2020-07-09</h2>
|
|
489
511
|
</a>
|
|
490
512
|
|
|
491
|
-
<a href="#added-
|
|
513
|
+
<a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
|
|
492
514
|
<h3>Added</h3>
|
|
493
515
|
</a>
|
|
494
516
|
<ul>
|
|
@@ -529,7 +551,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
529
551
|
<h2>[0.7.0] - 2020-03-10</h2>
|
|
530
552
|
</a>
|
|
531
553
|
|
|
532
|
-
<a href="#added-
|
|
554
|
+
<a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
|
|
533
555
|
<h3>Added</h3>
|
|
534
556
|
</a>
|
|
535
557
|
<ul>
|
|
@@ -588,7 +610,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
588
610
|
<h2>[0.6.0] - 2019-05-12</h2>
|
|
589
611
|
</a>
|
|
590
612
|
|
|
591
|
-
<a href="#added-
|
|
613
|
+
<a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
|
|
592
614
|
<h3>Added</h3>
|
|
593
615
|
</a>
|
|
594
616
|
<ul>
|
|
@@ -606,7 +628,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
606
628
|
<h2>[0.5.0] - 2019-04-09</h2>
|
|
607
629
|
</a>
|
|
608
630
|
|
|
609
|
-
<a href="#added-
|
|
631
|
+
<a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
|
|
610
632
|
<h3>Added</h3>
|
|
611
633
|
</a>
|
|
612
634
|
<ul>
|
|
@@ -628,7 +650,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
628
650
|
<h2>[0.4.0] - 2019-01-30</h2>
|
|
629
651
|
</a>
|
|
630
652
|
|
|
631
|
-
<a href="#added-
|
|
653
|
+
<a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
|
|
632
654
|
<h3>Added</h3>
|
|
633
655
|
</a>
|
|
634
656
|
<ul>
|
|
@@ -665,7 +687,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
665
687
|
<li>improved one <code>set</code> test</li>
|
|
666
688
|
</ul>
|
|
667
689
|
|
|
668
|
-
<a href="#added-
|
|
690
|
+
<a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
|
|
669
691
|
<h3>Added</h3>
|
|
670
692
|
</a>
|
|
671
693
|
<ul>
|
|
@@ -676,7 +698,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
676
698
|
<h2>[0.2.0] 2018-12-09</h2>
|
|
677
699
|
</a>
|
|
678
700
|
|
|
679
|
-
<a href="#added-
|
|
701
|
+
<a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
|
|
680
702
|
<h3>Added</h3>
|
|
681
703
|
</a>
|
|
682
704
|
<ul>
|
|
@@ -703,13 +725,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
703
725
|
<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>
|
|
704
726
|
<div class="tsd-accordion-details">
|
|
705
727
|
<ul>
|
|
706
|
-
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
728
|
+
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.7.0</a>
|
|
707
729
|
<ul>
|
|
708
730
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
|
|
709
731
|
<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>
|
|
710
732
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
711
733
|
<ul>
|
|
712
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
734
|
+
<li class="tsd-kind-interface"><a href="../interfaces/ComparePropsOptions.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-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>Compare<wbr/>Props<wbr/>Options</a></li>
|
|
735
|
+
<li class="tsd-kind-interface"><a href="../interfaces/GetMultipleSource.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>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
713
736
|
<li class="tsd-kind-interface"><a href="../interfaces/GetSource.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>Get<wbr/>Source</a></li>
|
|
714
737
|
<li class="tsd-kind-interface"><a href="../interfaces/IsNumericStringOptions.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>Is<wbr/>Numeric<wbr/>String<wbr/>Options</a></li>
|
|
715
738
|
<li class="tsd-kind-interface"><a href="../interfaces/OccurencesOptions.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>Occurences<wbr/>Options</a></li>
|
|
@@ -717,7 +740,8 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
717
740
|
<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>
|
|
718
741
|
<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>
|
|
719
742
|
<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>
|
|
720
|
-
<li class="tsd-kind-type-alias"><a href="../types/
|
|
743
|
+
<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>
|
|
744
|
+
<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>
|
|
721
745
|
<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>
|
|
722
746
|
<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>
|
|
723
747
|
<li class="tsd-kind-type-alias"><a href="../types/SeqFn.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/>Fn</a></li>
|
|
@@ -730,6 +754,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
730
754
|
<li class="tsd-kind-function"><a href="../functions/capitalize.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>capitalize</a></li>
|
|
731
755
|
<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>
|
|
732
756
|
<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>
|
|
757
|
+
<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>
|
|
733
758
|
<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>
|
|
734
759
|
<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>
|
|
735
760
|
<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>
|
|
@@ -744,6 +769,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
744
769
|
<li class="tsd-kind-function"><a href="../functions/isNumericString.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>is<wbr/>Numeric<wbr/>String</a></li>
|
|
745
770
|
<li class="tsd-kind-function"><a href="../functions/isPlainObject.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>is<wbr/>Plain<wbr/>Object</a></li>
|
|
746
771
|
<li class="tsd-kind-function"><a href="../functions/last.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>last</a></li>
|
|
772
|
+
<li class="tsd-kind-function"><a href="../functions/later-1.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>later</a></li>
|
|
747
773
|
<li class="tsd-kind-function"><a href="../functions/mapAsync.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>map<wbr/>Async</a></li>
|
|
748
774
|
<li class="tsd-kind-function"><a href="../functions/mapValues.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>map<wbr/>Values</a></li>
|
|
749
775
|
<li class="tsd-kind-function"><a href="../functions/match.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>match</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.
|
|
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.7.0</title><meta name="description" content="Documentation for @ezez/utils - v1.7.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
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.7.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.
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v1.7.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,13 +36,14 @@
|
|
|
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.
|
|
39
|
+
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.7.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>
|
|
43
43
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
44
44
|
<ul>
|
|
45
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
45
|
+
<li class="tsd-kind-interface"><a href="../interfaces/ComparePropsOptions.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-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>Compare<wbr/>Props<wbr/>Options</a></li>
|
|
46
|
+
<li class="tsd-kind-interface"><a href="../interfaces/GetMultipleSource.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>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
46
47
|
<li class="tsd-kind-interface"><a href="../interfaces/GetSource.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>Get<wbr/>Source</a></li>
|
|
47
48
|
<li class="tsd-kind-interface"><a href="../interfaces/IsNumericStringOptions.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>Is<wbr/>Numeric<wbr/>String<wbr/>Options</a></li>
|
|
48
49
|
<li class="tsd-kind-interface"><a href="../interfaces/OccurencesOptions.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>Occurences<wbr/>Options</a></li>
|
|
@@ -50,7 +51,8 @@
|
|
|
50
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>
|
|
51
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>
|
|
52
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>
|
|
53
|
-
<li class="tsd-kind-type-alias"><a href="../types/
|
|
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>
|
|
55
|
+
<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>
|
|
54
56
|
<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>
|
|
55
57
|
<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>
|
|
56
58
|
<li class="tsd-kind-type-alias"><a href="../types/SeqFn.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/>Fn</a></li>
|
|
@@ -63,6 +65,7 @@
|
|
|
63
65
|
<li class="tsd-kind-function"><a href="../functions/capitalize.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>capitalize</a></li>
|
|
64
66
|
<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>
|
|
65
67
|
<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
|
+
<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>
|
|
66
69
|
<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>
|
|
67
70
|
<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>
|
|
68
71
|
<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>
|
|
@@ -77,6 +80,7 @@
|
|
|
77
80
|
<li class="tsd-kind-function"><a href="../functions/isNumericString.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>is<wbr/>Numeric<wbr/>String</a></li>
|
|
78
81
|
<li class="tsd-kind-function"><a href="../functions/isPlainObject.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>is<wbr/>Plain<wbr/>Object</a></li>
|
|
79
82
|
<li class="tsd-kind-function"><a href="../functions/last.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>last</a></li>
|
|
83
|
+
<li class="tsd-kind-function"><a href="../functions/later-1.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>later</a></li>
|
|
80
84
|
<li class="tsd-kind-function"><a href="../functions/mapAsync.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>map<wbr/>Async</a></li>
|
|
81
85
|
<li class="tsd-kind-function"><a href="../functions/mapValues.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>map<wbr/>Values</a></li>
|
|
82
86
|
<li class="tsd-kind-function"><a href="../functions/match.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>match</a></li>
|