@ezez/utils 2.0.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. package/CHANGELOG.md +22 -1
  2. package/README.md +1 -0
  3. package/dist/index.d.ts +5 -0
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js +5 -0
  6. package/dist/index.js.map +1 -1
  7. package/dist/replace.d.ts.map +1 -1
  8. package/dist/replace.js.map +1 -1
  9. package/dist/round.d.ts +3 -0
  10. package/dist/round.d.ts.map +1 -0
  11. package/dist/round.js +9 -0
  12. package/dist/round.js.map +1 -0
  13. package/dist/safe.d.ts.map +1 -1
  14. package/dist/safe.js.map +1 -1
  15. package/dist/sample.d.ts +3 -0
  16. package/dist/sample.d.ts.map +1 -0
  17. package/dist/sample.js +8 -0
  18. package/dist/sample.js.map +1 -0
  19. package/dist/samples.d.ts +3 -0
  20. package/dist/samples.d.ts.map +1 -0
  21. package/dist/samples.js +28 -0
  22. package/dist/samples.js.map +1 -0
  23. package/dist/shuffle.d.ts +3 -0
  24. package/dist/shuffle.d.ts.map +1 -0
  25. package/dist/shuffle.js +9 -0
  26. package/dist/shuffle.js.map +1 -0
  27. package/dist/toggle.d.ts +3 -0
  28. package/dist/toggle.d.ts.map +1 -0
  29. package/dist/toggle.js +15 -0
  30. package/dist/toggle.js.map +1 -0
  31. package/dist/waitFor.d.ts +7 -1
  32. package/dist/waitFor.d.ts.map +1 -1
  33. package/dist/waitFor.js +35 -10
  34. package/dist/waitFor.js.map +1 -1
  35. package/docs/assets/search.js +1 -1
  36. package/docs/functions/cap.html +10 -5
  37. package/docs/functions/capitalize.html +10 -5
  38. package/docs/functions/coalesce.html +10 -5
  39. package/docs/functions/compareArrays.html +10 -5
  40. package/docs/functions/compareProps.html +10 -5
  41. package/docs/functions/deserialize.html +10 -5
  42. package/docs/functions/ensureArray.html +10 -5
  43. package/docs/functions/ensureDate.html +10 -5
  44. package/docs/functions/ensureError.html +10 -5
  45. package/docs/functions/ensurePrefix.html +10 -5
  46. package/docs/functions/ensureSuffix.html +10 -5
  47. package/docs/functions/ensureTimestamp.html +10 -5
  48. package/docs/functions/escapeRegExp.html +10 -5
  49. package/docs/functions/formatDate.html +10 -5
  50. package/docs/functions/get.html +10 -5
  51. package/docs/functions/getMultiple.html +10 -5
  52. package/docs/functions/insertSeparator.html +10 -5
  53. package/docs/functions/isEmpty.html +10 -5
  54. package/docs/functions/isNumericString.html +10 -5
  55. package/docs/functions/isPlainObject.html +10 -5
  56. package/docs/functions/last.html +10 -5
  57. package/docs/functions/later-1.html +10 -5
  58. package/docs/functions/mapAsync.html +10 -5
  59. package/docs/functions/mapValues.html +10 -5
  60. package/docs/functions/match.html +10 -5
  61. package/docs/functions/merge.html +18 -13
  62. package/docs/functions/mostFrequent.html +10 -5
  63. package/docs/functions/noop.html +10 -5
  64. package/docs/functions/occurrences.html +10 -5
  65. package/docs/functions/omit.html +10 -5
  66. package/docs/functions/pick.html +10 -5
  67. package/docs/functions/pull.html +10 -5
  68. package/docs/functions/remove.html +10 -5
  69. package/docs/functions/removeCommonProperties.html +10 -5
  70. package/docs/functions/replace.html +10 -5
  71. package/docs/functions/replaceDeep.html +10 -5
  72. package/docs/functions/rethrow.html +10 -5
  73. package/docs/functions/round.html +148 -0
  74. package/docs/functions/safe.html +11 -6
  75. package/docs/functions/sample.html +146 -0
  76. package/docs/functions/samples.html +156 -0
  77. package/docs/functions/scale.html +10 -5
  78. package/docs/functions/seq.html +10 -5
  79. package/docs/functions/seqEarlyBreak.html +10 -5
  80. package/docs/functions/serialize.html +10 -5
  81. package/docs/functions/set.html +10 -5
  82. package/docs/functions/setImmutable.html +10 -5
  83. package/docs/functions/shuffle.html +146 -0
  84. package/docs/functions/sortBy.html +10 -5
  85. package/docs/functions/sortProps.html +10 -5
  86. package/docs/functions/stripPrefix.html +10 -5
  87. package/docs/functions/stripSuffix.html +10 -5
  88. package/docs/functions/throttle.html +10 -5
  89. package/docs/functions/toggle.html +151 -0
  90. package/docs/functions/truthy.html +10 -5
  91. package/docs/functions/unique.html +10 -5
  92. package/docs/functions/wait.html +10 -5
  93. package/docs/functions/waitFor.html +21 -18
  94. package/docs/functions/waitSync.html +10 -5
  95. package/docs/index.html +10 -4
  96. package/docs/interfaces/ComparePropsOptions.html +6 -6
  97. package/docs/interfaces/GetMultipleSource.html +10 -5
  98. package/docs/interfaces/GetSource.html +10 -5
  99. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  100. package/docs/interfaces/OccurencesOptions.html +6 -6
  101. package/docs/interfaces/SetImmutableSource.html +10 -5
  102. package/docs/interfaces/SetSource.html +10 -5
  103. package/docs/interfaces/ThrottleOptions.html +7 -7
  104. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  105. package/docs/modules.html +14 -4
  106. package/docs/pages/CHANGELOG.html +98 -46
  107. package/docs/pages/Introduction.html +9 -4
  108. package/docs/types/CustomDeserializers.html +10 -5
  109. package/docs/types/CustomSerializers.html +10 -5
  110. package/docs/types/Later.html +10 -5
  111. package/docs/types/MapValuesFn.html +10 -5
  112. package/docs/types/MatchCallback.html +10 -5
  113. package/docs/types/SeqEarlyBreaker.html +10 -5
  114. package/docs/types/SeqFn.html +10 -5
  115. package/docs/types/SeqFunctions.html +10 -5
  116. package/docs/types/SetImmutablePath.html +10 -5
  117. package/docs/types/ThrottledFunction.html +10 -5
  118. package/docs/variables/mapValuesUNSET.html +10 -5
  119. package/docs/variables/mergeUNSET.html +10 -5
  120. package/esm/index.d.ts +5 -0
  121. package/esm/index.d.ts.map +1 -1
  122. package/esm/index.js +5 -0
  123. package/esm/index.js.map +1 -1
  124. package/esm/replace.d.ts.map +1 -1
  125. package/esm/replace.js.map +1 -1
  126. package/esm/round.d.ts +3 -0
  127. package/esm/round.d.ts.map +1 -0
  128. package/esm/round.js +6 -0
  129. package/esm/round.js.map +1 -0
  130. package/esm/safe.d.ts.map +1 -1
  131. package/esm/safe.js.map +1 -1
  132. package/esm/sample.d.ts +3 -0
  133. package/esm/sample.d.ts.map +1 -0
  134. package/esm/sample.js +5 -0
  135. package/esm/sample.js.map +1 -0
  136. package/esm/samples.d.ts +3 -0
  137. package/esm/samples.d.ts.map +1 -0
  138. package/esm/samples.js +25 -0
  139. package/esm/samples.js.map +1 -0
  140. package/esm/shuffle.d.ts +3 -0
  141. package/esm/shuffle.d.ts.map +1 -0
  142. package/esm/shuffle.js +6 -0
  143. package/esm/shuffle.js.map +1 -0
  144. package/esm/toggle.d.ts +3 -0
  145. package/esm/toggle.d.ts.map +1 -0
  146. package/esm/toggle.js +12 -0
  147. package/esm/toggle.js.map +1 -0
  148. package/esm/waitFor.d.ts +7 -1
  149. package/esm/waitFor.d.ts.map +1 -1
  150. package/esm/waitFor.js +35 -10
  151. package/esm/waitFor.js.map +1 -1
  152. package/package.json +4 -4
  153. package/pnpm-lock.yaml +1162 -986
  154. package/src/index.ts +5 -0
  155. package/src/replace.ts +0 -1
  156. package/src/round.spec.ts +27 -0
  157. package/src/round.ts +21 -0
  158. package/src/safe.ts +0 -1
  159. package/src/sample.spec.ts +31 -0
  160. package/src/sample.ts +11 -0
  161. package/src/samples.spec.ts +50 -0
  162. package/src/samples.ts +41 -0
  163. package/src/shuffle.spec.ts +39 -0
  164. package/src/shuffle.ts +13 -0
  165. package/src/toggle.spec.ts +43 -0
  166. package/src/toggle.ts +22 -0
  167. package/src/waitFor.spec.ts +141 -0
  168. package/src/waitFor.ts +69 -18
@@ -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 - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
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 - v3.0.0</title><meta name="description" content="Documentation for @ezez/utils - v3.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,24 +6,71 @@
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 - v2.0.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v3.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v3.0.0</a></li>
16
16
  <li><a href="CHANGELOG.html">Changelog</a></li></ul>
17
17
  <h1> Changelog</h1></div>
18
18
  <div class="tsd-panel tsd-typography"><p>All notable changes to this project will be documented in this file.</p>
19
- <p>The format is based on <a href="https://ezez.dev/changelog/">EZEZ Chanelog</a>
19
+ <p>The format is based on <a href="https://ezez.dev/changelog/">EZEZ Changelog</a>
20
20
  and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p>
21
21
 
22
+ <a href="#300---2024-03-25" id="300---2024-03-25" style="color: inherit; text-decoration: none;">
23
+ <h2>[3.0.0] - 2024-03-25</h2>
24
+ </a>
25
+
26
+ <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
27
+ <h3>Breaking</h3>
28
+ </a>
29
+ <ul>
30
+ <li><code>waitFor</code> method was upgraded:<ul>
31
+ <li>now it supports Promises</li>
32
+ <li>the check fails only if <code>undefined</code>, <code>null</code> or <code>false</code> is given</li>
33
+ <li>function signature is changed (object options)</li>
34
+ <li><code>maxTries</code> option is added to have a limit of tries unrelated to time</li>
35
+ <li>no wait before the initial check</li>
36
+ </ul>
37
+ </li>
38
+ </ul>
39
+
40
+ <a href="#added" id="added" style="color: inherit; text-decoration: none;">
41
+ <h3>Added</h3>
42
+ </a>
43
+ <ul>
44
+ <li><code>toggle</code> method</li>
45
+ <li><code>sample</code> method</li>
46
+ <li><code>samples</code> method</li>
47
+ <li><code>shuffle</code> method</li>
48
+ </ul>
49
+
50
+ <a href="#dev" id="dev" style="color: inherit; text-decoration: none;">
51
+ <h3>Dev</h3>
52
+ </a>
53
+ <ul>
54
+ <li>added <code>waitFor</code> unit tests</li>
55
+ <li>added missing build files to repo (missing since 2.0.0)</li>
56
+ </ul>
57
+
58
+ <a href="#210---2023-10-29" id="210---2023-10-29" style="color: inherit; text-decoration: none;">
59
+ <h2>[2.1.0] - 2023-10-29</h2>
60
+ </a>
61
+
62
+ <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
63
+ <h3>Added</h3>
64
+ </a>
65
+ <ul>
66
+ <li><code>round</code> method</li>
67
+ </ul>
68
+
22
69
  <a href="#200---2023-10-09" id="200---2023-10-09" style="color: inherit; text-decoration: none;">
23
70
  <h2>[2.0.0] - 2023-10-09</h2>
24
71
  </a>
25
72
 
26
- <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
73
+ <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
27
74
  <h3>Breaking</h3>
28
75
  </a>
29
76
  <ul>
@@ -31,7 +78,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
31
78
  transpile this lib yourself</li>
32
79
  </ul>
33
80
 
34
- <a href="#added" id="added" style="color: inherit; text-decoration: none;">
81
+ <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
35
82
  <h3>Added</h3>
36
83
  </a>
37
84
  <ul>
@@ -44,7 +91,7 @@ transpile this lib yourself</li>
44
91
  <h2>[1.9.0] - 2023-07-07</h2>
45
92
  </a>
46
93
 
47
- <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
94
+ <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
48
95
  <h3>Added</h3>
49
96
  </a>
50
97
  <ul>
@@ -66,14 +113,14 @@ transpile this lib yourself</li>
66
113
  <h2>[1.8.0] - 2023-06-03</h2>
67
114
  </a>
68
115
 
69
- <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
116
+ <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
70
117
  <h3>Added</h3>
71
118
  </a>
72
119
  <ul>
73
120
  <li><code>formatDate</code> method</li>
74
121
  </ul>
75
122
 
76
- <a href="#dev" id="dev" style="color: inherit; text-decoration: none;">
123
+ <a href="#dev-1" id="dev-1" style="color: inherit; text-decoration: none;">
77
124
  <h3>Dev</h3>
78
125
  </a>
79
126
  <ul>
@@ -84,7 +131,7 @@ transpile this lib yourself</li>
84
131
  <h2>[1.7.0] - 2023-05-22</h2>
85
132
  </a>
86
133
 
87
- <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
134
+ <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
88
135
  <h3>Added</h3>
89
136
  </a>
90
137
  <ul>
@@ -95,7 +142,7 @@ transpile this lib yourself</li>
95
142
  <h2>[1.6.0] - 2023-05-12</h2>
96
143
  </a>
97
144
 
98
- <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
145
+ <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
99
146
  <h3>Added</h3>
100
147
  </a>
101
148
  <ul>
@@ -106,7 +153,7 @@ transpile this lib yourself</li>
106
153
  <h2>[1.5.0] - 2023-05-12</h2>
107
154
  </a>
108
155
 
109
- <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
156
+ <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
110
157
  <h3>Added</h3>
111
158
  </a>
112
159
  <ul>
@@ -118,7 +165,7 @@ transpile this lib yourself</li>
118
165
  <h2>[1.4.0] - 2023-05-11</h2>
119
166
  </a>
120
167
 
121
- <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
168
+ <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
122
169
  <h3>Added</h3>
123
170
  </a>
124
171
  <ul>
@@ -131,14 +178,14 @@ transpile this lib yourself</li>
131
178
  <h2>[1.3.0] - 2023-05-07</h2>
132
179
  </a>
133
180
 
134
- <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
181
+ <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
135
182
  <h3>Added</h3>
136
183
  </a>
137
184
  <ul>
138
185
  <li><code>safe</code> method</li>
139
186
  </ul>
140
187
 
141
- <a href="#dev-1" id="dev-1" style="color: inherit; text-decoration: none;">
188
+ <a href="#dev-2" id="dev-2" style="color: inherit; text-decoration: none;">
142
189
  <h3>Dev</h3>
143
190
  </a>
144
191
  <ul>
@@ -150,7 +197,7 @@ transpile this lib yourself</li>
150
197
  <h2>[1.2.0] - 2023-03-01</h2>
151
198
  </a>
152
199
 
153
- <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
200
+ <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
154
201
  <h3>Added</h3>
155
202
  </a>
156
203
  <ul>
@@ -166,7 +213,7 @@ transpile this lib yourself</li>
166
213
  <h2>[1.1.0] - 2023-02-20</h2>
167
214
  </a>
168
215
 
169
- <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
216
+ <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
170
217
  <h3>Added</h3>
171
218
  </a>
172
219
  <ul>
@@ -185,14 +232,14 @@ transpile this lib yourself</li>
185
232
  <h2>[1.0.0] - 2023-02-19</h2>
186
233
  </a>
187
234
 
188
- <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
235
+ <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
189
236
  <h3>Added</h3>
190
237
  </a>
191
238
  <ul>
192
239
  <li><code>isPlainObject</code> method</li>
193
240
  </ul>
194
241
 
195
- <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
242
+ <a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
196
243
  <h3>Breaking</h3>
197
244
  </a>
198
245
  <ul>
@@ -213,7 +260,7 @@ transpile this lib yourself</li>
213
260
  <li>in jsdoc added a warning to get/set and family about using them with TS</li>
214
261
  </ul>
215
262
 
216
- <a href="#dev-2" id="dev-2" style="color: inherit; text-decoration: none;">
263
+ <a href="#dev-3" id="dev-3" style="color: inherit; text-decoration: none;">
217
264
  <h3>Dev</h3>
218
265
  </a>
219
266
  <ul>
@@ -227,7 +274,7 @@ transpile this lib yourself</li>
227
274
  <h2>[0.24.1] - 2022-11-08</h2>
228
275
  </a>
229
276
 
230
- <a href="#dev-3" id="dev-3" style="color: inherit; text-decoration: none;">
277
+ <a href="#dev-4" id="dev-4" style="color: inherit; text-decoration: none;">
231
278
  <h3>Dev</h3>
232
279
  </a>
233
280
  <ul>
@@ -239,7 +286,7 @@ transpile this lib yourself</li>
239
286
  <h2>[0.24.0] - 2022-09-23</h2>
240
287
  </a>
241
288
 
242
- <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
289
+ <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
243
290
  <h3>Added</h3>
244
291
  </a>
245
292
  <ul>
@@ -287,7 +334,7 @@ transpile this lib yourself</li>
287
334
  <h2>[0.23.0] - 2022-07-17</h2>
288
335
  </a>
289
336
 
290
- <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
337
+ <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
291
338
  <h3>Added</h3>
292
339
  </a>
293
340
  <ul>
@@ -298,7 +345,7 @@ transpile this lib yourself</li>
298
345
  <h2>[0.22.0] - 2022-07-16</h2>
299
346
  </a>
300
347
 
301
- <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
348
+ <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
302
349
  <h3>Added</h3>
303
350
  </a>
304
351
  <ul>
@@ -316,7 +363,7 @@ transpile this lib yourself</li>
316
363
  <h2>[0.21.0] - 2022-07-08</h2>
317
364
  </a>
318
365
 
319
- <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
366
+ <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
320
367
  <h3>Added</h3>
321
368
  </a>
322
369
  <ul>
@@ -327,7 +374,7 @@ transpile this lib yourself</li>
327
374
  <h2>[0.20.0] - 2022-07-03</h2>
328
375
  </a>
329
376
 
330
- <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
377
+ <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
331
378
  <h3>Added</h3>
332
379
  </a>
333
380
  <ul>
@@ -349,7 +396,7 @@ transpile this lib yourself</li>
349
396
  <h2>[0.19.0] - 2022-04-27</h2>
350
397
  </a>
351
398
 
352
- <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
399
+ <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
353
400
  <h3>Added</h3>
354
401
  </a>
355
402
  <ul>
@@ -364,7 +411,7 @@ transpile this lib yourself</li>
364
411
  <li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
365
412
  </ul>
366
413
 
367
- <a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
414
+ <a href="#breaking-3" id="breaking-3" style="color: inherit; text-decoration: none;">
368
415
  <h3>Breaking</h3>
369
416
  </a>
370
417
  <ul>
@@ -375,7 +422,7 @@ transpile this lib yourself</li>
375
422
  <h2>[0.18.0] - 2021-12-04</h2>
376
423
  </a>
377
424
 
378
- <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
425
+ <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
379
426
  <h3>Added</h3>
380
427
  </a>
381
428
  <ul>
@@ -398,7 +445,7 @@ transpile this lib yourself</li>
398
445
  <h2>[0.17.0] - 2021-10-31</h2>
399
446
  </a>
400
447
 
401
- <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
448
+ <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
402
449
  <h3>Added</h3>
403
450
  </a>
404
451
  <ul>
@@ -416,7 +463,7 @@ transpile this lib yourself</li>
416
463
  <h2>[0.16.0] - 2021-09-24</h2>
417
464
  </a>
418
465
 
419
- <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
466
+ <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
420
467
  <h3>Added</h3>
421
468
  </a>
422
469
  <ul>
@@ -427,7 +474,7 @@ transpile this lib yourself</li>
427
474
  <h2>[0.15.0] - 2021-07-04</h2>
428
475
  </a>
429
476
 
430
- <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
477
+ <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
431
478
  <h3>Added</h3>
432
479
  </a>
433
480
  <ul>
@@ -463,7 +510,7 @@ transpile this lib yourself</li>
463
510
  <li>upgraded typings for sortBy</li>
464
511
  </ul>
465
512
 
466
- <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
513
+ <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
467
514
  <h3>Added</h3>
468
515
  </a>
469
516
  <ul>
@@ -492,7 +539,7 @@ transpile this lib yourself</li>
492
539
  <li>upgraded typings for mapValues</li>
493
540
  </ul>
494
541
 
495
- <a href="#dev-4" id="dev-4" style="color: inherit; text-decoration: none;">
542
+ <a href="#dev-5" id="dev-5" style="color: inherit; text-decoration: none;">
496
543
  <h3>Dev</h3>
497
544
  </a>
498
545
  <ul>
@@ -505,7 +552,7 @@ transpile this lib yourself</li>
505
552
  <h2>[0.13.0] - 2021-02-03</h2>
506
553
  </a>
507
554
 
508
- <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
555
+ <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
509
556
  <h3>Added</h3>
510
557
  </a>
511
558
  <ul>
@@ -518,7 +565,7 @@ transpile this lib yourself</li>
518
565
  <h2>[0.12.0] - 2021-01-19</h2>
519
566
  </a>
520
567
 
521
- <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
568
+ <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
522
569
  <h3>Added</h3>
523
570
  </a>
524
571
  <ul>
@@ -529,7 +576,7 @@ transpile this lib yourself</li>
529
576
  <h2>[0.11.0-beta.2] - 2021-01-08</h2>
530
577
  </a>
531
578
 
532
- <a href="#dev-5" id="dev-5" style="color: inherit; text-decoration: none;">
579
+ <a href="#dev-6" id="dev-6" style="color: inherit; text-decoration: none;">
533
580
  <h3>Dev</h3>
534
581
  </a>
535
582
  <ul>
@@ -560,7 +607,7 @@ transpile this lib yourself</li>
560
607
  <h2>[0.10.0] - 2020-09-14</h2>
561
608
  </a>
562
609
 
563
- <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
610
+ <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
564
611
  <h3>Added</h3>
565
612
  </a>
566
613
  <ul>
@@ -571,7 +618,7 @@ transpile this lib yourself</li>
571
618
  <h2>[0.9.0] - 2020-07-09</h2>
572
619
  </a>
573
620
 
574
- <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
621
+ <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
575
622
  <h3>Added</h3>
576
623
  </a>
577
624
  <ul>
@@ -612,7 +659,7 @@ transpile this lib yourself</li>
612
659
  <h2>[0.7.0] - 2020-03-10</h2>
613
660
  </a>
614
661
 
615
- <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
662
+ <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
616
663
  <h3>Added</h3>
617
664
  </a>
618
665
  <ul>
@@ -671,7 +718,7 @@ transpile this lib yourself</li>
671
718
  <h2>[0.6.0] - 2019-05-12</h2>
672
719
  </a>
673
720
 
674
- <a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
721
+ <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
675
722
  <h3>Added</h3>
676
723
  </a>
677
724
  <ul>
@@ -689,7 +736,7 @@ transpile this lib yourself</li>
689
736
  <h2>[0.5.0] - 2019-04-09</h2>
690
737
  </a>
691
738
 
692
- <a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
739
+ <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
693
740
  <h3>Added</h3>
694
741
  </a>
695
742
  <ul>
@@ -711,7 +758,7 @@ transpile this lib yourself</li>
711
758
  <h2>[0.4.0] - 2019-01-30</h2>
712
759
  </a>
713
760
 
714
- <a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
761
+ <a href="#added-31" id="added-31" style="color: inherit; text-decoration: none;">
715
762
  <h3>Added</h3>
716
763
  </a>
717
764
  <ul>
@@ -748,7 +795,7 @@ transpile this lib yourself</li>
748
795
  <li>improved one <code>set</code> test</li>
749
796
  </ul>
750
797
 
751
- <a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
798
+ <a href="#added-32" id="added-32" style="color: inherit; text-decoration: none;">
752
799
  <h3>Added</h3>
753
800
  </a>
754
801
  <ul>
@@ -759,7 +806,7 @@ transpile this lib yourself</li>
759
806
  <h2>[0.2.0] 2018-12-09</h2>
760
807
  </a>
761
808
 
762
- <a href="#added-31" id="added-31" style="color: inherit; text-decoration: none;">
809
+ <a href="#added-33" id="added-33" style="color: inherit; text-decoration: none;">
763
810
  <h3>Added</h3>
764
811
  </a>
765
812
  <ul>
@@ -786,7 +833,7 @@ transpile this lib yourself</li>
786
833
  <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>
787
834
  <div class="tsd-accordion-details">
788
835
  <ul>
789
- <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
836
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v3.0.0</a>
790
837
  <ul>
791
838
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
792
839
  <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>
@@ -850,18 +897,23 @@ transpile this lib yourself</li>
850
897
  <li class="tsd-kind-function"><a href="../functions/replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
851
898
  <li class="tsd-kind-function"><a href="../functions/replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
852
899
  <li class="tsd-kind-function"><a href="../functions/rethrow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>rethrow</a></li>
900
+ <li class="tsd-kind-function"><a href="../functions/round.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>round</a></li>
853
901
  <li class="tsd-kind-function"><a href="../functions/safe.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>safe</a></li>
902
+ <li class="tsd-kind-function"><a href="../functions/sample.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>sample</a></li>
903
+ <li class="tsd-kind-function"><a href="../functions/samples.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>samples</a></li>
854
904
  <li class="tsd-kind-function"><a href="../functions/scale.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>scale</a></li>
855
905
  <li class="tsd-kind-function"><a href="../functions/seq.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq</a></li>
856
906
  <li class="tsd-kind-function"><a href="../functions/seqEarlyBreak.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq<wbr/>Early<wbr/>Break</a></li>
857
907
  <li class="tsd-kind-function"><a href="../functions/serialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>serialize</a></li>
858
908
  <li class="tsd-kind-function"><a href="../functions/set.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set</a></li>
859
909
  <li class="tsd-kind-function"><a href="../functions/setImmutable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set<wbr/>Immutable</a></li>
910
+ <li class="tsd-kind-function"><a href="../functions/shuffle.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>shuffle</a></li>
860
911
  <li class="tsd-kind-function"><a href="../functions/sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>
861
912
  <li class="tsd-kind-function"><a href="../functions/sortProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>Props</a></li>
862
913
  <li class="tsd-kind-function"><a href="../functions/stripPrefix.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/>Prefix</a></li>
863
914
  <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>
864
915
  <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>
916
+ <li class="tsd-kind-function"><a href="../functions/toggle.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>toggle</a></li>
865
917
  <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>
866
918
  <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>
867
919
  <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>
@@ -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 - v2.0.0</title><meta name="description" content="Documentation for @ezez/utils - v2.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
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 - v3.0.0</title><meta name="description" content="Documentation for @ezez/utils - v3.0.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v2.0.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v3.0.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@ezez/utils - v2.0.0</a></li>
15
+ <li><a href="../modules.html">@ezez/utils - v3.0.0</a></li>
16
16
  <li><a href="Introduction.html">Introduction</a></li></ul>
17
17
  <h1> Introduction</h1></div>
18
18
  <div class="tsd-panel tsd-typography"><p>WIP.</p>
@@ -36,7 +36,7 @@
36
36
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
37
37
  <div class="tsd-accordion-details">
38
38
  <ul>
39
- <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v2.0.0</a>
39
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v3.0.0</a>
40
40
  <ul>
41
41
  <li class="current selected pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
42
42
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
@@ -100,18 +100,23 @@
100
100
  <li class="tsd-kind-function"><a href="../functions/replace.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace</a></li>
101
101
  <li class="tsd-kind-function"><a href="../functions/replaceDeep.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>replace<wbr/>Deep</a></li>
102
102
  <li class="tsd-kind-function"><a href="../functions/rethrow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>rethrow</a></li>
103
+ <li class="tsd-kind-function"><a href="../functions/round.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>round</a></li>
103
104
  <li class="tsd-kind-function"><a href="../functions/safe.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>safe</a></li>
105
+ <li class="tsd-kind-function"><a href="../functions/sample.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>sample</a></li>
106
+ <li class="tsd-kind-function"><a href="../functions/samples.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>samples</a></li>
104
107
  <li class="tsd-kind-function"><a href="../functions/scale.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>scale</a></li>
105
108
  <li class="tsd-kind-function"><a href="../functions/seq.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq</a></li>
106
109
  <li class="tsd-kind-function"><a href="../functions/seqEarlyBreak.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>seq<wbr/>Early<wbr/>Break</a></li>
107
110
  <li class="tsd-kind-function"><a href="../functions/serialize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>serialize</a></li>
108
111
  <li class="tsd-kind-function"><a href="../functions/set.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set</a></li>
109
112
  <li class="tsd-kind-function"><a href="../functions/setImmutable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>set<wbr/>Immutable</a></li>
113
+ <li class="tsd-kind-function"><a href="../functions/shuffle.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>shuffle</a></li>
110
114
  <li class="tsd-kind-function"><a href="../functions/sortBy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>By</a></li>
111
115
  <li class="tsd-kind-function"><a href="../functions/sortProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sort<wbr/>Props</a></li>
112
116
  <li class="tsd-kind-function"><a href="../functions/stripPrefix.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/>Prefix</a></li>
113
117
  <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>
114
118
  <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>
119
+ <li class="tsd-kind-function"><a href="../functions/toggle.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>toggle</a></li>
115
120
  <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>
116
121
  <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>
117
122
  <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>