@ezez/utils 1.4.0 → 1.6.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 +9 -0
- package/README.md +3 -0
- package/dist/compareArrays.d.ts +7 -0
- package/dist/compareArrays.d.ts.map +1 -0
- package/dist/compareArrays.js +12 -0
- package/dist/compareArrays.js.map +1 -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 +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/unique.d.ts +3 -0
- package/dist/unique.d.ts.map +1 -0
- package/dist/unique.js +8 -0
- package/dist/unique.js.map +1 -0
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +10 -6
- package/docs/functions/capitalize.html +10 -6
- package/docs/functions/coalesce.html +10 -6
- package/docs/functions/compareArrays.html +148 -0
- package/docs/functions/compareProps.html +147 -0
- package/docs/functions/ensureArray.html +10 -6
- package/docs/functions/ensureDate.html +10 -6
- package/docs/functions/ensureError.html +10 -6
- package/docs/functions/ensurePrefix.html +10 -6
- package/docs/functions/ensureSuffix.html +10 -6
- package/docs/functions/ensureTimestamp.html +10 -6
- package/docs/functions/escapeRegExp.html +10 -6
- package/docs/functions/get.html +10 -6
- package/docs/functions/getMultiple.html +10 -6
- package/docs/functions/insertSeparator.html +10 -6
- package/docs/functions/isEmpty.html +10 -6
- package/docs/functions/isNumericString.html +10 -6
- package/docs/functions/isPlainObject.html +10 -6
- package/docs/functions/last.html +10 -6
- package/docs/functions/mapAsync.html +10 -6
- package/docs/functions/mapValues.html +10 -6
- package/docs/functions/match.html +10 -6
- package/docs/functions/merge.html +18 -14
- package/docs/functions/mostFrequent.html +10 -6
- package/docs/functions/noop.html +10 -6
- package/docs/functions/occurrences.html +10 -6
- package/docs/functions/omit.html +10 -6
- package/docs/functions/pick.html +10 -6
- package/docs/functions/pull.html +10 -6
- package/docs/functions/remove.html +10 -6
- package/docs/functions/replace.html +10 -6
- package/docs/functions/rethrow.html +10 -6
- package/docs/functions/safe.html +11 -7
- package/docs/functions/scale.html +10 -6
- package/docs/functions/seq.html +10 -6
- package/docs/functions/seqEarlyBreak.html +10 -6
- package/docs/functions/set.html +10 -6
- package/docs/functions/setImmutable.html +10 -6
- package/docs/functions/sortBy.html +10 -6
- package/docs/functions/sortProps.html +10 -6
- package/docs/functions/stripPrefix.html +10 -6
- package/docs/functions/stripSuffix.html +10 -6
- package/docs/functions/throttle.html +10 -6
- package/docs/functions/truthy.html +10 -6
- package/docs/functions/unique.html +135 -0
- package/docs/functions/wait.html +10 -6
- package/docs/functions/waitFor.html +10 -6
- package/docs/functions/waitSync.html +10 -6
- package/docs/index.html +12 -5
- package/docs/interfaces/ComparePropsOptions.html +70 -0
- package/docs/interfaces/GetMultipleSource.html +10 -6
- package/docs/interfaces/GetSource.html +10 -6
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +10 -6
- package/docs/interfaces/SetSource.html +10 -6
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +13 -5
- package/docs/pages/CHANGELOG.html +58 -31
- package/docs/pages/Introduction.html +9 -5
- package/docs/types/MapValuesFn.html +10 -6
- package/docs/types/MatchCallback.html +10 -6
- package/docs/types/SeqEarlyBreaker.html +10 -6
- package/docs/types/SeqFn.html +10 -6
- package/docs/types/SeqFunctions.html +10 -6
- package/docs/types/SetImmutablePath.html +10 -6
- package/docs/types/ThrottledFunction.html +10 -6
- package/docs/variables/mapValuesUNSET.html +10 -6
- package/docs/variables/mergeUNSET.html +10 -6
- package/esm/compareArrays.d.ts +7 -0
- package/esm/compareArrays.d.ts.map +1 -0
- package/esm/compareArrays.js +9 -0
- package/esm/compareArrays.js.map +1 -0
- 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 +3 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +3 -0
- package/esm/index.js.map +1 -1
- package/esm/unique.d.ts +3 -0
- package/esm/unique.d.ts.map +1 -0
- package/esm/unique.js +5 -0
- package/esm/unique.js.map +1 -0
- package/package.json +1 -1
- package/src/compareArrays.spec.ts +64 -0
- package/src/compareArrays.ts +22 -0
- package/src/compareProps.spec.ts +68 -0
- package/src/compareProps.ts +33 -0
- package/src/index.ts +3 -0
- package/src/unique.spec.ts +10 -0
- package/src/unique.ts +12 -0
|
@@ -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.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.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,47 @@
|
|
|
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.6.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.6.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="#160---2023-05-12" id="160---2023-05-12" style="color: inherit; text-decoration: none;">
|
|
23
|
+
<h2>[1.6.0] - 2023-05-12</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>compareProps</code> method</li>
|
|
31
|
+
</ul>
|
|
32
|
+
|
|
33
|
+
<a href="#150---2023-05-12" id="150---2023-05-12" style="color: inherit; text-decoration: none;">
|
|
34
|
+
<h2>[1.5.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>compareArrays</code> method</li>
|
|
42
|
+
<li><code>unique</code> method</li>
|
|
43
|
+
</ul>
|
|
44
|
+
|
|
22
45
|
<a href="#140---2023-05-11" id="140---2023-05-11" style="color: inherit; text-decoration: none;">
|
|
23
46
|
<h2>[1.4.0] - 2023-05-11</h2>
|
|
24
47
|
</a>
|
|
25
48
|
|
|
26
|
-
<a href="#added" id="added" style="color: inherit; text-decoration: none;">
|
|
49
|
+
<a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
|
|
27
50
|
<h3>Added</h3>
|
|
28
51
|
</a>
|
|
29
52
|
<ul>
|
|
@@ -36,7 +59,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
36
59
|
<h2>[1.3.0] - 2023-05-07</h2>
|
|
37
60
|
</a>
|
|
38
61
|
|
|
39
|
-
<a href="#added-
|
|
62
|
+
<a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
|
|
40
63
|
<h3>Added</h3>
|
|
41
64
|
</a>
|
|
42
65
|
<ul>
|
|
@@ -55,7 +78,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
55
78
|
<h2>[1.2.0] - 2023-03-01</h2>
|
|
56
79
|
</a>
|
|
57
80
|
|
|
58
|
-
<a href="#added-
|
|
81
|
+
<a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
|
|
59
82
|
<h3>Added</h3>
|
|
60
83
|
</a>
|
|
61
84
|
<ul>
|
|
@@ -71,7 +94,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
71
94
|
<h2>[1.1.0] - 2023-02-20</h2>
|
|
72
95
|
</a>
|
|
73
96
|
|
|
74
|
-
<a href="#added-
|
|
97
|
+
<a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
|
|
75
98
|
<h3>Added</h3>
|
|
76
99
|
</a>
|
|
77
100
|
<ul>
|
|
@@ -90,7 +113,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
90
113
|
<h2>[1.0.0] - 2023-02-19</h2>
|
|
91
114
|
</a>
|
|
92
115
|
|
|
93
|
-
<a href="#added-
|
|
116
|
+
<a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
|
|
94
117
|
<h3>Added</h3>
|
|
95
118
|
</a>
|
|
96
119
|
<ul>
|
|
@@ -144,7 +167,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
144
167
|
<h2>[0.24.0] - 2022-09-23</h2>
|
|
145
168
|
</a>
|
|
146
169
|
|
|
147
|
-
<a href="#added-
|
|
170
|
+
<a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
|
|
148
171
|
<h3>Added</h3>
|
|
149
172
|
</a>
|
|
150
173
|
<ul>
|
|
@@ -192,7 +215,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
192
215
|
<h2>[0.23.0] - 2022-07-17</h2>
|
|
193
216
|
</a>
|
|
194
217
|
|
|
195
|
-
<a href="#added-
|
|
218
|
+
<a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
|
|
196
219
|
<h3>Added</h3>
|
|
197
220
|
</a>
|
|
198
221
|
<ul>
|
|
@@ -203,7 +226,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
203
226
|
<h2>[0.22.0] - 2022-07-16</h2>
|
|
204
227
|
</a>
|
|
205
228
|
|
|
206
|
-
<a href="#added-
|
|
229
|
+
<a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
|
|
207
230
|
<h3>Added</h3>
|
|
208
231
|
</a>
|
|
209
232
|
<ul>
|
|
@@ -221,7 +244,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
221
244
|
<h2>[0.21.0] - 2022-07-08</h2>
|
|
222
245
|
</a>
|
|
223
246
|
|
|
224
|
-
<a href="#added-
|
|
247
|
+
<a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
|
|
225
248
|
<h3>Added</h3>
|
|
226
249
|
</a>
|
|
227
250
|
<ul>
|
|
@@ -232,7 +255,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
232
255
|
<h2>[0.20.0] - 2022-07-03</h2>
|
|
233
256
|
</a>
|
|
234
257
|
|
|
235
|
-
<a href="#added-
|
|
258
|
+
<a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
|
|
236
259
|
<h3>Added</h3>
|
|
237
260
|
</a>
|
|
238
261
|
<ul>
|
|
@@ -254,7 +277,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
254
277
|
<h2>[0.19.0] - 2022-04-27</h2>
|
|
255
278
|
</a>
|
|
256
279
|
|
|
257
|
-
<a href="#added-
|
|
280
|
+
<a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
|
|
258
281
|
<h3>Added</h3>
|
|
259
282
|
</a>
|
|
260
283
|
<ul>
|
|
@@ -280,7 +303,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
280
303
|
<h2>[0.18.0] - 2021-12-04</h2>
|
|
281
304
|
</a>
|
|
282
305
|
|
|
283
|
-
<a href="#added-
|
|
306
|
+
<a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
|
|
284
307
|
<h3>Added</h3>
|
|
285
308
|
</a>
|
|
286
309
|
<ul>
|
|
@@ -303,7 +326,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
303
326
|
<h2>[0.17.0] - 2021-10-31</h2>
|
|
304
327
|
</a>
|
|
305
328
|
|
|
306
|
-
<a href="#added-
|
|
329
|
+
<a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
|
|
307
330
|
<h3>Added</h3>
|
|
308
331
|
</a>
|
|
309
332
|
<ul>
|
|
@@ -321,7 +344,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
321
344
|
<h2>[0.16.0] - 2021-09-24</h2>
|
|
322
345
|
</a>
|
|
323
346
|
|
|
324
|
-
<a href="#added-
|
|
347
|
+
<a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
|
|
325
348
|
<h3>Added</h3>
|
|
326
349
|
</a>
|
|
327
350
|
<ul>
|
|
@@ -332,7 +355,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
332
355
|
<h2>[0.15.0] - 2021-07-04</h2>
|
|
333
356
|
</a>
|
|
334
357
|
|
|
335
|
-
<a href="#added-
|
|
358
|
+
<a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
|
|
336
359
|
<h3>Added</h3>
|
|
337
360
|
</a>
|
|
338
361
|
<ul>
|
|
@@ -368,7 +391,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
368
391
|
<li>upgraded typings for sortBy</li>
|
|
369
392
|
</ul>
|
|
370
393
|
|
|
371
|
-
<a href="#added-
|
|
394
|
+
<a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
|
|
372
395
|
<h3>Added</h3>
|
|
373
396
|
</a>
|
|
374
397
|
<ul>
|
|
@@ -410,7 +433,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
410
433
|
<h2>[0.13.0] - 2021-02-03</h2>
|
|
411
434
|
</a>
|
|
412
435
|
|
|
413
|
-
<a href="#added-
|
|
436
|
+
<a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
|
|
414
437
|
<h3>Added</h3>
|
|
415
438
|
</a>
|
|
416
439
|
<ul>
|
|
@@ -423,7 +446,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
423
446
|
<h2>[0.12.0] - 2021-01-19</h2>
|
|
424
447
|
</a>
|
|
425
448
|
|
|
426
|
-
<a href="#added-
|
|
449
|
+
<a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
|
|
427
450
|
<h3>Added</h3>
|
|
428
451
|
</a>
|
|
429
452
|
<ul>
|
|
@@ -465,7 +488,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
465
488
|
<h2>[0.10.0] - 2020-09-14</h2>
|
|
466
489
|
</a>
|
|
467
490
|
|
|
468
|
-
<a href="#added-
|
|
491
|
+
<a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
|
|
469
492
|
<h3>Added</h3>
|
|
470
493
|
</a>
|
|
471
494
|
<ul>
|
|
@@ -476,7 +499,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
476
499
|
<h2>[0.9.0] - 2020-07-09</h2>
|
|
477
500
|
</a>
|
|
478
501
|
|
|
479
|
-
<a href="#added-
|
|
502
|
+
<a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
|
|
480
503
|
<h3>Added</h3>
|
|
481
504
|
</a>
|
|
482
505
|
<ul>
|
|
@@ -517,7 +540,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
517
540
|
<h2>[0.7.0] - 2020-03-10</h2>
|
|
518
541
|
</a>
|
|
519
542
|
|
|
520
|
-
<a href="#added-
|
|
543
|
+
<a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
|
|
521
544
|
<h3>Added</h3>
|
|
522
545
|
</a>
|
|
523
546
|
<ul>
|
|
@@ -576,7 +599,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
576
599
|
<h2>[0.6.0] - 2019-05-12</h2>
|
|
577
600
|
</a>
|
|
578
601
|
|
|
579
|
-
<a href="#added-
|
|
602
|
+
<a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
|
|
580
603
|
<h3>Added</h3>
|
|
581
604
|
</a>
|
|
582
605
|
<ul>
|
|
@@ -594,7 +617,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
594
617
|
<h2>[0.5.0] - 2019-04-09</h2>
|
|
595
618
|
</a>
|
|
596
619
|
|
|
597
|
-
<a href="#added-
|
|
620
|
+
<a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
|
|
598
621
|
<h3>Added</h3>
|
|
599
622
|
</a>
|
|
600
623
|
<ul>
|
|
@@ -616,7 +639,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
616
639
|
<h2>[0.4.0] - 2019-01-30</h2>
|
|
617
640
|
</a>
|
|
618
641
|
|
|
619
|
-
<a href="#added-
|
|
642
|
+
<a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
|
|
620
643
|
<h3>Added</h3>
|
|
621
644
|
</a>
|
|
622
645
|
<ul>
|
|
@@ -653,7 +676,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
653
676
|
<li>improved one <code>set</code> test</li>
|
|
654
677
|
</ul>
|
|
655
678
|
|
|
656
|
-
<a href="#added-
|
|
679
|
+
<a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
|
|
657
680
|
<h3>Added</h3>
|
|
658
681
|
</a>
|
|
659
682
|
<ul>
|
|
@@ -664,7 +687,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
664
687
|
<h2>[0.2.0] 2018-12-09</h2>
|
|
665
688
|
</a>
|
|
666
689
|
|
|
667
|
-
<a href="#added-
|
|
690
|
+
<a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
|
|
668
691
|
<h3>Added</h3>
|
|
669
692
|
</a>
|
|
670
693
|
<ul>
|
|
@@ -691,13 +714,14 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
691
714
|
<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>
|
|
692
715
|
<div class="tsd-accordion-details">
|
|
693
716
|
<ul>
|
|
694
|
-
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
717
|
+
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.6.0</a>
|
|
695
718
|
<ul>
|
|
696
719
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
|
|
697
720
|
<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>
|
|
698
721
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
699
722
|
<ul>
|
|
700
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
723
|
+
<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>
|
|
724
|
+
<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>
|
|
701
725
|
<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>
|
|
702
726
|
<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>
|
|
703
727
|
<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,6 +741,8 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
717
741
|
<li class="tsd-kind-function"><a href="../functions/cap.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-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
718
742
|
<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>
|
|
719
743
|
<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>
|
|
744
|
+
<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>
|
|
745
|
+
<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>
|
|
720
746
|
<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>
|
|
721
747
|
<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>
|
|
722
748
|
<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>
|
|
@@ -756,6 +782,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
756
782
|
<li class="tsd-kind-function"><a href="../functions/stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
757
783
|
<li class="tsd-kind-function"><a href="../functions/throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
758
784
|
<li class="tsd-kind-function"><a href="../functions/truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
785
|
+
<li class="tsd-kind-function"><a href="../functions/unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
759
786
|
<li class="tsd-kind-function"><a href="../functions/wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
760
787
|
<li class="tsd-kind-function"><a href="../functions/waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
761
788
|
<li class="tsd-kind-function"><a href="../functions/waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|
|
@@ -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.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.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.6.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.6.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.6.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>
|
|
@@ -62,6 +63,8 @@
|
|
|
62
63
|
<li class="tsd-kind-function"><a href="../functions/cap.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-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
63
64
|
<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
65
|
<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>
|
|
66
|
+
<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>
|
|
67
|
+
<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>
|
|
65
68
|
<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>
|
|
66
69
|
<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>
|
|
67
70
|
<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>
|
|
@@ -101,6 +104,7 @@
|
|
|
101
104
|
<li class="tsd-kind-function"><a href="../functions/stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
102
105
|
<li class="tsd-kind-function"><a href="../functions/throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
103
106
|
<li class="tsd-kind-function"><a href="../functions/truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
107
|
+
<li class="tsd-kind-function"><a href="../functions/unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
104
108
|
<li class="tsd-kind-function"><a href="../functions/wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
105
109
|
<li class="tsd-kind-function"><a href="../functions/waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
106
110
|
<li class="tsd-kind-function"><a href="../functions/waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|
|
@@ -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>MapValuesFn | @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>MapValuesFn | @ezez/utils - v1.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.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.6.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.6.0</a></li>
|
|
16
16
|
<li><a href="MapValuesFn.html">MapValuesFn</a></li></ul>
|
|
17
17
|
<h1>Type alias MapValuesFn<S, R></h1></div>
|
|
18
18
|
<div class="tsd-signature">Map<wbr/>Values<wbr/>Fn<span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">S</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">S</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">S</span><span class="tsd-signature-symbol">]</span>, key<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">S</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span><span class="tsd-signature-symbol">)</span></div>
|
|
@@ -56,7 +56,7 @@ value to unset a property in the target the object.</p>
|
|
|
56
56
|
</div></li></ul></div>
|
|
57
57
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">R</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
|
|
58
58
|
<ul>
|
|
59
|
-
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/
|
|
59
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/fd785b1/src/mapValues.ts#L22">mapValues.ts:22</a></li></ul></aside></div>
|
|
60
60
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
61
61
|
<div class="tsd-navigation settings">
|
|
62
62
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
@@ -76,13 +76,14 @@ value to unset a property in the target the object.</p>
|
|
|
76
76
|
<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>
|
|
77
77
|
<div class="tsd-accordion-details">
|
|
78
78
|
<ul>
|
|
79
|
-
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
79
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.6.0</a>
|
|
80
80
|
<ul>
|
|
81
81
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
|
|
82
82
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
|
|
83
83
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
84
84
|
<ul>
|
|
85
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
85
|
+
<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>
|
|
86
|
+
<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>
|
|
86
87
|
<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>
|
|
87
88
|
<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>
|
|
88
89
|
<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>
|
|
@@ -102,6 +103,8 @@ value to unset a property in the target the object.</p>
|
|
|
102
103
|
<li class="tsd-kind-function"><a href="../functions/cap.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-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
103
104
|
<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>
|
|
104
105
|
<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>
|
|
106
|
+
<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>
|
|
107
|
+
<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>
|
|
105
108
|
<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>
|
|
106
109
|
<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>
|
|
107
110
|
<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>
|
|
@@ -141,6 +144,7 @@ value to unset a property in the target the object.</p>
|
|
|
141
144
|
<li class="tsd-kind-function"><a href="../functions/stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
142
145
|
<li class="tsd-kind-function"><a href="../functions/throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
143
146
|
<li class="tsd-kind-function"><a href="../functions/truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
147
|
+
<li class="tsd-kind-function"><a href="../functions/unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
144
148
|
<li class="tsd-kind-function"><a href="../functions/wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
145
149
|
<li class="tsd-kind-function"><a href="../functions/waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
146
150
|
<li class="tsd-kind-function"><a href="../functions/waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|
|
@@ -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>MatchCallback | @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>MatchCallback | @ezez/utils - v1.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.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.6.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.6.0</a></li>
|
|
16
16
|
<li><a href="MatchCallback.html">MatchCallback</a></li></ul>
|
|
17
17
|
<h1>Type alias MatchCallback<T></h1></div>
|
|
18
18
|
<div class="tsd-signature">Match<wbr/>Callback<span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span></div>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<h5>value: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
|
|
36
36
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
|
|
37
37
|
<ul>
|
|
38
|
-
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/
|
|
38
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/fd785b1/src/match.ts#L1">match.ts:1</a></li></ul></aside></div>
|
|
39
39
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
40
40
|
<div class="tsd-navigation settings">
|
|
41
41
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
@@ -55,13 +55,14 @@
|
|
|
55
55
|
<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>
|
|
56
56
|
<div class="tsd-accordion-details">
|
|
57
57
|
<ul>
|
|
58
|
-
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
58
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.6.0</a>
|
|
59
59
|
<ul>
|
|
60
60
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
|
|
61
61
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
|
|
62
62
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
63
63
|
<ul>
|
|
64
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
64
|
+
<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>
|
|
65
|
+
<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>
|
|
65
66
|
<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>
|
|
66
67
|
<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>
|
|
67
68
|
<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>
|
|
@@ -81,6 +82,8 @@
|
|
|
81
82
|
<li class="tsd-kind-function"><a href="../functions/cap.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-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
82
83
|
<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>
|
|
83
84
|
<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>
|
|
85
|
+
<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>
|
|
86
|
+
<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>
|
|
84
87
|
<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>
|
|
85
88
|
<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>
|
|
86
89
|
<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>
|
|
@@ -120,6 +123,7 @@
|
|
|
120
123
|
<li class="tsd-kind-function"><a href="../functions/stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
121
124
|
<li class="tsd-kind-function"><a href="../functions/throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
122
125
|
<li class="tsd-kind-function"><a href="../functions/truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
126
|
+
<li class="tsd-kind-function"><a href="../functions/unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
123
127
|
<li class="tsd-kind-function"><a href="../functions/wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
124
128
|
<li class="tsd-kind-function"><a href="../functions/waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
125
129
|
<li class="tsd-kind-function"><a href="../functions/waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|