@ezez/utils 1.2.0 → 1.5.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 (159) hide show
  1. package/.github/workflows/docs.yml +50 -0
  2. package/CHANGELOG.md +18 -0
  3. package/README.md +7 -1
  4. package/dist/compareArrays.d.ts +7 -0
  5. package/dist/compareArrays.d.ts.map +1 -0
  6. package/dist/compareArrays.js +12 -0
  7. package/dist/compareArrays.js.map +1 -0
  8. package/dist/ensureError.d.ts.map +1 -1
  9. package/dist/ensureError.js.map +1 -1
  10. package/dist/escapeRegExp.d.ts +3 -0
  11. package/dist/escapeRegExp.d.ts.map +1 -0
  12. package/dist/escapeRegExp.js +8 -0
  13. package/dist/escapeRegExp.js.map +1 -0
  14. package/dist/index.d.ts +6 -0
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +6 -0
  17. package/dist/index.js.map +1 -1
  18. package/dist/isPlainObject.d.ts.map +1 -1
  19. package/dist/isPlainObject.js.map +1 -1
  20. package/dist/replace.d.ts +3 -0
  21. package/dist/replace.d.ts.map +1 -0
  22. package/dist/replace.js +10 -0
  23. package/dist/replace.js.map +1 -0
  24. package/dist/safe.d.ts +4 -0
  25. package/dist/safe.d.ts.map +1 -0
  26. package/dist/safe.js +13 -0
  27. package/dist/safe.js.map +1 -0
  28. package/dist/sortProps.d.ts +3 -0
  29. package/dist/sortProps.d.ts.map +1 -0
  30. package/dist/sortProps.js +19 -0
  31. package/dist/sortProps.js.map +1 -0
  32. package/dist/unique.d.ts +3 -0
  33. package/dist/unique.d.ts.map +1 -0
  34. package/dist/unique.js +8 -0
  35. package/dist/unique.js.map +1 -0
  36. package/docs/assets/highlight.css +14 -0
  37. package/docs/assets/main.js +1 -1
  38. package/docs/assets/search.js +1 -1
  39. package/docs/assets/style.css +4 -5
  40. package/docs/functions/cap.html +13 -6
  41. package/docs/functions/capitalize.html +13 -6
  42. package/docs/functions/coalesce.html +15 -9
  43. package/docs/functions/compareArrays.html +146 -0
  44. package/docs/functions/ensureArray.html +14 -7
  45. package/docs/functions/ensureDate.html +13 -6
  46. package/docs/functions/ensureError.html +23 -6
  47. package/docs/functions/ensurePrefix.html +13 -6
  48. package/docs/functions/ensureSuffix.html +13 -6
  49. package/docs/functions/ensureTimestamp.html +13 -6
  50. package/docs/functions/escapeRegExp.html +129 -0
  51. package/docs/functions/get.html +13 -6
  52. package/docs/functions/getMultiple.html +13 -6
  53. package/docs/functions/insertSeparator.html +13 -6
  54. package/docs/functions/isEmpty.html +13 -6
  55. package/docs/functions/isNumericString.html +13 -6
  56. package/docs/functions/isPlainObject.html +28 -6
  57. package/docs/functions/last.html +13 -6
  58. package/docs/functions/mapAsync.html +13 -6
  59. package/docs/functions/mapValues.html +13 -6
  60. package/docs/functions/match.html +13 -6
  61. package/docs/functions/merge.html +21 -14
  62. package/docs/functions/mostFrequent.html +13 -6
  63. package/docs/functions/noop.html +13 -6
  64. package/docs/functions/occurrences.html +13 -6
  65. package/docs/functions/omit.html +13 -6
  66. package/docs/functions/pick.html +13 -6
  67. package/docs/functions/pull.html +13 -6
  68. package/docs/functions/remove.html +13 -6
  69. package/docs/functions/replace.html +135 -0
  70. package/docs/functions/rethrow.html +13 -6
  71. package/docs/functions/safe.html +173 -0
  72. package/docs/functions/scale.html +13 -6
  73. package/docs/functions/seq.html +13 -6
  74. package/docs/functions/seqEarlyBreak.html +13 -6
  75. package/docs/functions/set.html +13 -6
  76. package/docs/functions/setImmutable.html +13 -6
  77. package/docs/functions/sortBy.html +13 -6
  78. package/docs/functions/sortProps.html +138 -0
  79. package/docs/functions/stripPrefix.html +13 -6
  80. package/docs/functions/stripSuffix.html +13 -6
  81. package/docs/functions/throttle.html +13 -6
  82. package/docs/functions/truthy.html +13 -6
  83. package/docs/functions/unique.html +133 -0
  84. package/docs/functions/wait.html +13 -6
  85. package/docs/functions/waitFor.html +13 -6
  86. package/docs/functions/waitSync.html +13 -6
  87. package/docs/index.html +20 -7
  88. package/docs/interfaces/GetMultipleSource.html +13 -6
  89. package/docs/interfaces/GetSource.html +13 -6
  90. package/docs/interfaces/IsNumericStringOptions.html +11 -10
  91. package/docs/interfaces/OccurencesOptions.html +8 -7
  92. package/docs/interfaces/SetImmutableSource.html +13 -6
  93. package/docs/interfaces/SetSource.html +13 -6
  94. package/docs/interfaces/ThrottleOptions.html +9 -8
  95. package/docs/interfaces/ThrottledFunctionExtras.html +9 -8
  96. package/docs/modules.html +18 -5
  97. package/docs/pages/CHANGELOG.html +778 -0
  98. package/docs/pages/Introduction.html +12 -5
  99. package/docs/types/MapValuesFn.html +13 -6
  100. package/docs/types/MatchCallback.html +13 -6
  101. package/docs/types/SeqEarlyBreaker.html +13 -6
  102. package/docs/types/SeqFn.html +13 -6
  103. package/docs/types/SeqFunctions.html +13 -6
  104. package/docs/types/SetImmutablePath.html +13 -6
  105. package/docs/types/ThrottledFunction.html +13 -6
  106. package/docs/variables/mapValuesUNSET.html +13 -6
  107. package/docs/variables/mergeUNSET.html +13 -6
  108. package/esm/compareArrays.d.ts +7 -0
  109. package/esm/compareArrays.d.ts.map +1 -0
  110. package/esm/compareArrays.js +9 -0
  111. package/esm/compareArrays.js.map +1 -0
  112. package/esm/ensureError.d.ts.map +1 -1
  113. package/esm/ensureError.js.map +1 -1
  114. package/esm/escapeRegExp.d.ts +3 -0
  115. package/esm/escapeRegExp.d.ts.map +1 -0
  116. package/esm/escapeRegExp.js +5 -0
  117. package/esm/escapeRegExp.js.map +1 -0
  118. package/esm/index.d.ts +6 -0
  119. package/esm/index.d.ts.map +1 -1
  120. package/esm/index.js +6 -0
  121. package/esm/index.js.map +1 -1
  122. package/esm/isPlainObject.d.ts.map +1 -1
  123. package/esm/isPlainObject.js.map +1 -1
  124. package/esm/replace.d.ts +3 -0
  125. package/esm/replace.d.ts.map +1 -0
  126. package/esm/replace.js +7 -0
  127. package/esm/replace.js.map +1 -0
  128. package/esm/safe.d.ts +4 -0
  129. package/esm/safe.d.ts.map +1 -0
  130. package/esm/safe.js +10 -0
  131. package/esm/safe.js.map +1 -0
  132. package/esm/sortProps.d.ts +3 -0
  133. package/esm/sortProps.d.ts.map +1 -0
  134. package/esm/sortProps.js +16 -0
  135. package/esm/sortProps.js.map +1 -0
  136. package/esm/unique.d.ts +3 -0
  137. package/esm/unique.d.ts.map +1 -0
  138. package/esm/unique.js +5 -0
  139. package/esm/unique.js.map +1 -0
  140. package/package.json +23 -23
  141. package/src/coalesce.ts +2 -2
  142. package/src/compareArrays.spec.ts +38 -0
  143. package/src/compareArrays.ts +22 -0
  144. package/src/ensureArray.ts +1 -1
  145. package/src/ensureError.ts +7 -0
  146. package/src/escapeRegExp.spec.ts +31 -0
  147. package/src/escapeRegExp.ts +17 -0
  148. package/src/index.ts +6 -0
  149. package/src/isPlainObject.spec.ts +0 -7
  150. package/src/isPlainObject.ts +5 -0
  151. package/src/replace.spec.ts +22 -0
  152. package/src/replace.ts +19 -0
  153. package/src/safe.spec.ts +52 -0
  154. package/src/safe.ts +24 -0
  155. package/src/sortProps.spec.ts +20 -0
  156. package/src/sortProps.ts +21 -0
  157. package/src/unique.spec.ts +10 -0
  158. package/src/unique.ts +12 -0
  159. package/typedoc.cjs +5 -0
@@ -0,0 +1,778 @@
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.5.0</title><meta name="description" content="Documentation for @ezez/utils - v1.5.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
+ <div class="tsd-toolbar-contents container">
3
+ <div class="table-cell" id="tsd-search" data-base="..">
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>
5
+ <div class="field">
6
+ <div id="tsd-toolbar-links"></div></div>
7
+ <ul class="results">
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.5.0</a></div>
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
+ <div class="container container-main">
12
+ <div class="col-8 col-content">
13
+ <div class="tsd-page-title">
14
+ <ul class="tsd-breadcrumb">
15
+ <li><a href="../modules.html">@ezez/utils - v1.5.0</a></li>
16
+ <li><a href="CHANGELOG.html">Changelog</a></li></ul>
17
+ <h1> Changelog</h1></div>
18
+ <div class="tsd-panel tsd-typography"><p>All notable changes to this project will be documented in this file.</p>
19
+ <p>The format is based on <a href="http://keepachangelog.com/en/1.0.0/">Keep a Changelog</a>
20
+ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p>
21
+
22
+ <a href="#150---2023-05-12" id="150---2023-05-12" style="color: inherit; text-decoration: none;">
23
+ <h2>[1.5.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>compareArrays</code> method</li>
31
+ <li><code>unique</code> method</li>
32
+ </ul>
33
+
34
+ <a href="#140---2023-05-11" id="140---2023-05-11" style="color: inherit; text-decoration: none;">
35
+ <h2>[1.4.0] - 2023-05-11</h2>
36
+ </a>
37
+
38
+ <a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
39
+ <h3>Added</h3>
40
+ </a>
41
+ <ul>
42
+ <li><code>escapeRegExp</code> method</li>
43
+ <li><code>replace</code> method</li>
44
+ <li><code>sortProps</code> method</li>
45
+ </ul>
46
+
47
+ <a href="#130---2023-05-07" id="130---2023-05-07" style="color: inherit; text-decoration: none;">
48
+ <h2>[1.3.0] - 2023-05-07</h2>
49
+ </a>
50
+
51
+ <a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
52
+ <h3>Added</h3>
53
+ </a>
54
+ <ul>
55
+ <li><code>safe</code> method</li>
56
+ </ul>
57
+
58
+ <a href="#dev" id="dev" style="color: inherit; text-decoration: none;">
59
+ <h3>Dev</h3>
60
+ </a>
61
+ <ul>
62
+ <li>upgraded some jsdocs</li>
63
+ <li>upgraded deps</li>
64
+ </ul>
65
+
66
+ <a href="#120---2023-03-01" id="120---2023-03-01" style="color: inherit; text-decoration: none;">
67
+ <h2>[1.2.0] - 2023-03-01</h2>
68
+ </a>
69
+
70
+ <a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
71
+ <h3>Added</h3>
72
+ </a>
73
+ <ul>
74
+ <li><code>ensureDate</code> method</li>
75
+ <li><code>ensurePrefix</code> method</li>
76
+ <li><code>ensureSuffix</code> method</li>
77
+ <li><code>ensureTimestamp</code> method</li>
78
+ <li><code>stripPrefix</code> method</li>
79
+ <li><code>stripSuffix</code> method</li>
80
+ </ul>
81
+
82
+ <a href="#110---2023-02-20" id="110---2023-02-20" style="color: inherit; text-decoration: none;">
83
+ <h2>[1.1.0] - 2023-02-20</h2>
84
+ </a>
85
+
86
+ <a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
87
+ <h3>Added</h3>
88
+ </a>
89
+ <ul>
90
+ <li><code>isNumericString</code> method</li>
91
+ <li><code>occurrences</code> method</li>
92
+ </ul>
93
+
94
+ <a href="#changed" id="changed" style="color: inherit; text-decoration: none;">
95
+ <h3>Changed</h3>
96
+ </a>
97
+ <ul>
98
+ <li><code>isEmpty</code> throws <code>TypeError</code> instead of <code>Error</code> on primitives</li>
99
+ </ul>
100
+
101
+ <a href="#100---2023-02-19" id="100---2023-02-19" style="color: inherit; text-decoration: none;">
102
+ <h2>[1.0.0] - 2023-02-19</h2>
103
+ </a>
104
+
105
+ <a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
106
+ <h3>Added</h3>
107
+ </a>
108
+ <ul>
109
+ <li><code>isPlainObject</code> method</li>
110
+ </ul>
111
+
112
+ <a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
113
+ <h3>Breaking</h3>
114
+ </a>
115
+ <ul>
116
+ <li>changed <code>isEmpty</code> to throw on primitives</li>
117
+ <li><code>makeArray</code> is renamed to <code>ensureArray</code></li>
118
+ <li><code>wait.sync</code> is extracted as <code>waitSync</code></li>
119
+ <li>removed <code>pack</code> method</li>
120
+ <li>removed <code>pages</code> method</li>
121
+ <li>replaced <code>merge.UNSET</code> with <code>mergeUNSET</code></li>
122
+ <li>replaced <code>mapValues.REMOVE</code> with <code>mapValuesUNSET</code></li>
123
+ </ul>
124
+
125
+ <a href="#changed-1" id="changed-1" style="color: inherit; text-decoration: none;">
126
+ <h3>Changed</h3>
127
+ </a>
128
+ <ul>
129
+ <li>added some examples to docs</li>
130
+ <li>in jsdoc added a warning to get/set and family about using them with TS</li>
131
+ </ul>
132
+
133
+ <a href="#dev-1" id="dev-1" style="color: inherit; text-decoration: none;">
134
+ <h3>Dev</h3>
135
+ </a>
136
+ <ul>
137
+ <li>added missing docs</li>
138
+ <li>fixed some jsdoc strings (so they contain types for non-ts users)</li>
139
+ <li>fixed typedoc warnings</li>
140
+ <li>README update, preparing to rename library</li>
141
+ </ul>
142
+
143
+ <a href="#0241---2022-11-08" id="0241---2022-11-08" style="color: inherit; text-decoration: none;">
144
+ <h2>[0.24.1] - 2022-11-08</h2>
145
+ </a>
146
+
147
+ <a href="#dev-2" id="dev-2" style="color: inherit; text-decoration: none;">
148
+ <h3>Dev</h3>
149
+ </a>
150
+ <ul>
151
+ <li>exported some typings</li>
152
+ <li>library template bump</li>
153
+ </ul>
154
+
155
+ <a href="#0240---2022-09-23" id="0240---2022-09-23" style="color: inherit; text-decoration: none;">
156
+ <h2>[0.24.0] - 2022-09-23</h2>
157
+ </a>
158
+
159
+ <a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
160
+ <h3>Added</h3>
161
+ </a>
162
+ <ul>
163
+ <li><code>pull</code> method</li>
164
+ </ul>
165
+
166
+ <a href="#changed-2" id="changed-2" style="color: inherit; text-decoration: none;">
167
+ <h3>Changed</h3>
168
+ </a>
169
+ <ul>
170
+ <li><code>throttle</code> with multiple timeouts working more as intended with <code>opts.leading</code> = true</li>
171
+ </ul>
172
+
173
+ <a href="#fixed" id="fixed" style="color: inherit; text-decoration: none;">
174
+ <h3>Fixed</h3>
175
+ </a>
176
+ <ul>
177
+ <li>first timeout of <code>throttle</code> with multiple timeouts repeated two times</li>
178
+ </ul>
179
+
180
+ <a href="#0232---2022-08-21" id="0232---2022-08-21" style="color: inherit; text-decoration: none;">
181
+ <h2>[0.23.2] - 2022-08-21</h2>
182
+ </a>
183
+
184
+ <a href="#fixed-1" id="fixed-1" style="color: inherit; text-decoration: none;">
185
+ <h3>Fixed</h3>
186
+ </a>
187
+ <ul>
188
+ <li><code>throttle</code> with trailing call not respecting multiple timeouts</li>
189
+ <li><code>truthy</code> typings</li>
190
+ </ul>
191
+
192
+ <a href="#0231---2022-07-17" id="0231---2022-07-17" style="color: inherit; text-decoration: none;">
193
+ <h2>[0.23.1] - 2022-07-17</h2>
194
+ </a>
195
+
196
+ <a href="#fixed-2" id="fixed-2" style="color: inherit; text-decoration: none;">
197
+ <h3>Fixed</h3>
198
+ </a>
199
+ <ul>
200
+ <li>missing <code>mostFrequent</code> export</li>
201
+ </ul>
202
+
203
+ <a href="#0230---2022-07-17" id="0230---2022-07-17" style="color: inherit; text-decoration: none;">
204
+ <h2>[0.23.0] - 2022-07-17</h2>
205
+ </a>
206
+
207
+ <a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
208
+ <h3>Added</h3>
209
+ </a>
210
+ <ul>
211
+ <li><code>mostFrequent</code> method</li>
212
+ </ul>
213
+
214
+ <a href="#0220---2022-07-16" id="0220---2022-07-16" style="color: inherit; text-decoration: none;">
215
+ <h2>[0.22.0] - 2022-07-16</h2>
216
+ </a>
217
+
218
+ <a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
219
+ <h3>Added</h3>
220
+ </a>
221
+ <ul>
222
+ <li><code>capitalize</code> method</li>
223
+ </ul>
224
+
225
+ <a href="#fixed-3" id="fixed-3" style="color: inherit; text-decoration: none;">
226
+ <h3>Fixed</h3>
227
+ </a>
228
+ <ul>
229
+ <li><code>throttle</code> reset not resetting array of times</li>
230
+ </ul>
231
+
232
+ <a href="#0210---2022-07-08" id="0210---2022-07-08" style="color: inherit; text-decoration: none;">
233
+ <h2>[0.21.0] - 2022-07-08</h2>
234
+ </a>
235
+
236
+ <a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
237
+ <h3>Added</h3>
238
+ </a>
239
+ <ul>
240
+ <li><code>throttle</code> method</li>
241
+ </ul>
242
+
243
+ <a href="#0200---2022-07-03" id="0200---2022-07-03" style="color: inherit; text-decoration: none;">
244
+ <h2>[0.20.0] - 2022-07-03</h2>
245
+ </a>
246
+
247
+ <a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
248
+ <h3>Added</h3>
249
+ </a>
250
+ <ul>
251
+ <li><code>ensureError</code> method</li>
252
+ </ul>
253
+
254
+ <a href="#0191---2022-04-27" id="0191---2022-04-27" style="color: inherit; text-decoration: none;">
255
+ <h2>[0.19.1] - 2022-04-27</h2>
256
+ </a>
257
+
258
+ <a href="#fixed-4" id="fixed-4" style="color: inherit; text-decoration: none;">
259
+ <h3>Fixed</h3>
260
+ </a>
261
+ <ul>
262
+ <li>new methods not exported</li>
263
+ </ul>
264
+
265
+ <a href="#0190---2022-04-27" id="0190---2022-04-27" style="color: inherit; text-decoration: none;">
266
+ <h2>[0.19.0] - 2022-04-27</h2>
267
+ </a>
268
+
269
+ <a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
270
+ <h3>Added</h3>
271
+ </a>
272
+ <ul>
273
+ <li><code>scale</code>, <code>truthy</code>, <code>waitFor</code>, <code>cap</code> methods</li>
274
+ </ul>
275
+
276
+ <a href="#changed-3" id="changed-3" style="color: inherit; text-decoration: none;">
277
+ <h3>Changed</h3>
278
+ </a>
279
+ <ul>
280
+ <li>improved types for <code>insertSeparator</code></li>
281
+ <li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
282
+ </ul>
283
+
284
+ <a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
285
+ <h3>Breaking</h3>
286
+ </a>
287
+ <ul>
288
+ <li><code>seq</code> no longer uses nor exports custom error</li>
289
+ </ul>
290
+
291
+ <a href="#0180---2021-12-04" id="0180---2021-12-04" style="color: inherit; text-decoration: none;">
292
+ <h2>[0.18.0] - 2021-12-04</h2>
293
+ </a>
294
+
295
+ <a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
296
+ <h3>Added</h3>
297
+ </a>
298
+ <ul>
299
+ <li><code>wait</code> method</li>
300
+ <li><code>mapAsync</code> method</li>
301
+ </ul>
302
+
303
+ <a href="#0171---2021-10-31" id="0171---2021-10-31" style="color: inherit; text-decoration: none;">
304
+ <h2>[0.17.1] - 2021-10-31</h2>
305
+ </a>
306
+
307
+ <a href="#fixed-5" id="fixed-5" style="color: inherit; text-decoration: none;">
308
+ <h3>Fixed</h3>
309
+ </a>
310
+ <ul>
311
+ <li>missing <code>merge</code> export</li>
312
+ </ul>
313
+
314
+ <a href="#0170---2021-10-31" id="0170---2021-10-31" style="color: inherit; text-decoration: none;">
315
+ <h2>[0.17.0] - 2021-10-31</h2>
316
+ </a>
317
+
318
+ <a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
319
+ <h3>Added</h3>
320
+ </a>
321
+ <ul>
322
+ <li><code>merge</code> method</li>
323
+ </ul>
324
+
325
+ <a href="#changed-4" id="changed-4" style="color: inherit; text-decoration: none;">
326
+ <h3>Changed</h3>
327
+ </a>
328
+ <ul>
329
+ <li><code>REMOVE</code> special property in <code>mapValues</code> now uses Symbols if available</li>
330
+ </ul>
331
+
332
+ <a href="#0160---2021-09-24" id="0160---2021-09-24" style="color: inherit; text-decoration: none;">
333
+ <h2>[0.16.0] - 2021-09-24</h2>
334
+ </a>
335
+
336
+ <a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
337
+ <h3>Added</h3>
338
+ </a>
339
+ <ul>
340
+ <li><code>noop</code> and <code>rethrow</code> methods</li>
341
+ </ul>
342
+
343
+ <a href="#0150---2021-07-04" id="0150---2021-07-04" style="color: inherit; text-decoration: none;">
344
+ <h2>[0.15.0] - 2021-07-04</h2>
345
+ </a>
346
+
347
+ <a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
348
+ <h3>Added</h3>
349
+ </a>
350
+ <ul>
351
+ <li><code>seq</code> with early break mode</li>
352
+ </ul>
353
+
354
+ <a href="#changed-5" id="changed-5" style="color: inherit; text-decoration: none;">
355
+ <h3>Changed</h3>
356
+ </a>
357
+ <ul>
358
+ <li>upgraded typings for <code>last</code></li>
359
+ </ul>
360
+
361
+ <a href="#0141---2021-06-13" id="0141---2021-06-13" style="color: inherit; text-decoration: none;">
362
+ <h2>[0.14.1] - 2021-06-13</h2>
363
+ </a>
364
+
365
+ <a href="#changed-6" id="changed-6" style="color: inherit; text-decoration: none;">
366
+ <h3>Changed</h3>
367
+ </a>
368
+ <ul>
369
+ <li>upgraded typings for <code>pick</code>, <code>omit</code>, <code>pack</code>, <code>sortBy</code></li>
370
+ </ul>
371
+
372
+ <a href="#0140---2021-06-05" id="0140---2021-06-05" style="color: inherit; text-decoration: none;">
373
+ <h2>[0.14.0] - 2021-06-05</h2>
374
+ </a>
375
+
376
+ <a href="#changed-7" id="changed-7" style="color: inherit; text-decoration: none;">
377
+ <h3>Changed</h3>
378
+ </a>
379
+ <ul>
380
+ <li>upgraded typings for sortBy</li>
381
+ </ul>
382
+
383
+ <a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
384
+ <h3>Added</h3>
385
+ </a>
386
+ <ul>
387
+ <li><code>seq</code> method</li>
388
+ </ul>
389
+
390
+ <a href="#0132---2021-05-16" id="0132---2021-05-16" style="color: inherit; text-decoration: none;">
391
+ <h2>[0.13.2] - 2021-05-16</h2>
392
+ </a>
393
+
394
+ <a href="#changed-8" id="changed-8" style="color: inherit; text-decoration: none;">
395
+ <h3>Changed</h3>
396
+ </a>
397
+ <ul>
398
+ <li>upgraded typings for pick, omit, get, getMultiple, mapValues, set, setImmutable, sortBy</li>
399
+ </ul>
400
+
401
+ <a href="#0131---2021-04-14" id="0131---2021-04-14" style="color: inherit; text-decoration: none;">
402
+ <h2>[0.13.1] - 2021-04-14</h2>
403
+ </a>
404
+
405
+ <a href="#changed-9" id="changed-9" style="color: inherit; text-decoration: none;">
406
+ <h3>Changed</h3>
407
+ </a>
408
+ <ul>
409
+ <li>upgraded typings for mapValues</li>
410
+ </ul>
411
+
412
+ <a href="#dev-3" id="dev-3" style="color: inherit; text-decoration: none;">
413
+ <h3>Dev</h3>
414
+ </a>
415
+ <ul>
416
+ <li>fixed invalid name in <code>types</code> package.json field</li>
417
+ <li>bumped some deps</li>
418
+ <li>added missing testcase for mapValues</li>
419
+ </ul>
420
+
421
+ <a href="#0130---2021-02-03" id="0130---2021-02-03" style="color: inherit; text-decoration: none;">
422
+ <h2>[0.13.0] - 2021-02-03</h2>
423
+ </a>
424
+
425
+ <a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
426
+ <h3>Added</h3>
427
+ </a>
428
+ <ul>
429
+ <li><code>match</code> method</li>
430
+ <li><code>pack</code> method</li>
431
+ <li><code>sortBy</code> method</li>
432
+ </ul>
433
+
434
+ <a href="#0120---2021-01-19" id="0120---2021-01-19" style="color: inherit; text-decoration: none;">
435
+ <h2>[0.12.0] - 2021-01-19</h2>
436
+ </a>
437
+
438
+ <a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
439
+ <h3>Added</h3>
440
+ </a>
441
+ <ul>
442
+ <li><code>makeArray</code> method</li>
443
+ </ul>
444
+
445
+ <a href="#0110-beta2---2021-01-08" id="0110-beta2---2021-01-08" style="color: inherit; text-decoration: none;">
446
+ <h2>[0.11.0-beta.2] - 2021-01-08</h2>
447
+ </a>
448
+
449
+ <a href="#dev-4" id="dev-4" style="color: inherit; text-decoration: none;">
450
+ <h3>Dev</h3>
451
+ </a>
452
+ <ul>
453
+ <li>add basic TypeScript support</li>
454
+ <li>replaced mocha with jest</li>
455
+ <li>replaced jsdoc with typedoc</li>
456
+ </ul>
457
+
458
+ <a href="#changed-10" id="changed-10" style="color: inherit; text-decoration: none;">
459
+ <h3>Changed</h3>
460
+ </a>
461
+ <ul>
462
+ <li>small README update</li>
463
+ </ul>
464
+
465
+ <a href="#0101---2020-09-14" id="0101---2020-09-14" style="color: inherit; text-decoration: none;">
466
+ <h2>[0.10.1] - 2020-09-14</h2>
467
+ </a>
468
+
469
+ <a href="#fixed-6" id="fixed-6" style="color: inherit; text-decoration: none;">
470
+ <h3>Fixed</h3>
471
+ </a>
472
+ <ul>
473
+ <li><code>pages</code> export</li>
474
+ </ul>
475
+
476
+ <a href="#0100---2020-09-14" id="0100---2020-09-14" style="color: inherit; text-decoration: none;">
477
+ <h2>[0.10.0] - 2020-09-14</h2>
478
+ </a>
479
+
480
+ <a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
481
+ <h3>Added</h3>
482
+ </a>
483
+ <ul>
484
+ <li><code>pages</code> method</li>
485
+ </ul>
486
+
487
+ <a href="#090---2020-07-09" id="090---2020-07-09" style="color: inherit; text-decoration: none;">
488
+ <h2>[0.9.0] - 2020-07-09</h2>
489
+ </a>
490
+
491
+ <a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
492
+ <h3>Added</h3>
493
+ </a>
494
+ <ul>
495
+ <li><code>remove</code> method</li>
496
+ </ul>
497
+
498
+ <a href="#080---2020-03-13" id="080---2020-03-13" style="color: inherit; text-decoration: none;">
499
+ <h2>[0.8.0] - 2020-03-13</h2>
500
+ </a>
501
+
502
+ <a href="#fixed-7" id="fixed-7" style="color: inherit; text-decoration: none;">
503
+ <h3>Fixed</h3>
504
+ </a>
505
+ <ul>
506
+ <li>CommonJS code still not working properly</li>
507
+ </ul>
508
+
509
+ <a href="#changed-11" id="changed-11" style="color: inherit; text-decoration: none;">
510
+ <h3>Changed</h3>
511
+ </a>
512
+ <ul>
513
+ <li><code>REMOVE</code> enum from mapValues attached to the function instead of extra export</li>
514
+ <li>better native ESM support</li>
515
+ </ul>
516
+
517
+ <a href="#071---2020-03-12" id="071---2020-03-12" style="color: inherit; text-decoration: none;">
518
+ <h2>[0.7.1] - 2020-03-12</h2>
519
+ </a>
520
+
521
+ <a href="#fixed-8" id="fixed-8" style="color: inherit; text-decoration: none;">
522
+ <h3>Fixed</h3>
523
+ </a>
524
+ <ul>
525
+ <li>CommonJS code not working properly</li>
526
+ </ul>
527
+
528
+ <a href="#070---2020-03-10" id="070---2020-03-10" style="color: inherit; text-decoration: none;">
529
+ <h2>[0.7.0] - 2020-03-10</h2>
530
+ </a>
531
+
532
+ <a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
533
+ <h3>Added</h3>
534
+ </a>
535
+ <ul>
536
+ <li>native ESM support</li>
537
+ </ul>
538
+
539
+ <a href="#changed-12" id="changed-12" style="color: inherit; text-decoration: none;">
540
+ <h3>Changed</h3>
541
+ </a>
542
+ <ul>
543
+ <li>upgraded deps</li>
544
+ </ul>
545
+
546
+ <a href="#removed" id="removed" style="color: inherit; text-decoration: none;">
547
+ <h3>Removed</h3>
548
+ </a>
549
+ <ul>
550
+ <li>support for deep imports like: <code>bottom-line-utils/get</code>, use <code>bottom-line-utils/src/get</code> or
551
+ <code>bottom-line-utils/dist/get</code> for now</li>
552
+ </ul>
553
+
554
+ <a href="#063---2019-08-29" id="063---2019-08-29" style="color: inherit; text-decoration: none;">
555
+ <h2>[0.6.3] - 2019-08-29</h2>
556
+ </a>
557
+
558
+ <a href="#fixed-9" id="fixed-9" style="color: inherit; text-decoration: none;">
559
+ <h3>Fixed</h3>
560
+ </a>
561
+ <ul>
562
+ <li>dev deps audit issues</li>
563
+ </ul>
564
+
565
+ <a href="#062---2019-06-06" id="062---2019-06-06" style="color: inherit; text-decoration: none;">
566
+ <h2>[0.6.2] - 2019-06-06</h2>
567
+ </a>
568
+
569
+ <a href="#fixed-10" id="fixed-10" style="color: inherit; text-decoration: none;">
570
+ <h3>Fixed</h3>
571
+ </a>
572
+ <ul>
573
+ <li>deps audit issue, related to development (eslint), not the code (0.6.2 is not released to npm as a result)</li>
574
+ </ul>
575
+
576
+ <a href="#061---2019-06-05" id="061---2019-06-05" style="color: inherit; text-decoration: none;">
577
+ <h2>[0.6.1] - 2019-06-05</h2>
578
+ </a>
579
+
580
+ <a href="#fixed-11" id="fixed-11" style="color: inherit; text-decoration: none;">
581
+ <h3>Fixed</h3>
582
+ </a>
583
+ <ul>
584
+ <li>deps audit issue, related to docs generating, not the code (0.6.1 is not released to npm as a result)</li>
585
+ </ul>
586
+
587
+ <a href="#060---2019-05-12" id="060---2019-05-12" style="color: inherit; text-decoration: none;">
588
+ <h2>[0.6.0] - 2019-05-12</h2>
589
+ </a>
590
+
591
+ <a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
592
+ <h3>Added</h3>
593
+ </a>
594
+ <ul>
595
+ <li><code>pick</code> and <code>omit</code> methods</li>
596
+ </ul>
597
+
598
+ <a href="#changed-13" id="changed-13" style="color: inherit; text-decoration: none;">
599
+ <h3>Changed</h3>
600
+ </a>
601
+ <ul>
602
+ <li>babel config for <code>dist</code> transpiled code upgraded, to transpile less features</li>
603
+ </ul>
604
+
605
+ <a href="#050---2019-04-09" id="050---2019-04-09" style="color: inherit; text-decoration: none;">
606
+ <h2>[0.5.0] - 2019-04-09</h2>
607
+ </a>
608
+
609
+ <a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
610
+ <h3>Added</h3>
611
+ </a>
612
+ <ul>
613
+ <li><code>coalesce</code> method</li>
614
+ </ul>
615
+
616
+ <a href="#041---2019-01-31" id="041---2019-01-31" style="color: inherit; text-decoration: none;">
617
+ <h2>[0.4.1] - 2019-01-31</h2>
618
+ </a>
619
+
620
+ <a href="#fixed-12" id="fixed-12" style="color: inherit; text-decoration: none;">
621
+ <h3>Fixed</h3>
622
+ </a>
623
+ <ul>
624
+ <li><code>setImmutable</code> not allowing number as path and allowing other incorrect/unexpected values as paths</li>
625
+ </ul>
626
+
627
+ <a href="#040---2019-01-30" id="040---2019-01-30" style="color: inherit; text-decoration: none;">
628
+ <h2>[0.4.0] - 2019-01-30</h2>
629
+ </a>
630
+
631
+ <a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
632
+ <h3>Added</h3>
633
+ </a>
634
+ <ul>
635
+ <li><code>insertSeparator</code> method</li>
636
+ </ul>
637
+
638
+ <a href="#031---2018-12-09" id="031---2018-12-09" style="color: inherit; text-decoration: none;">
639
+ <h2>[0.3.1] - 2018-12-09</h2>
640
+ </a>
641
+
642
+ <a href="#fixed-13" id="fixed-13" style="color: inherit; text-decoration: none;">
643
+ <h3>Fixed</h3>
644
+ </a>
645
+ <ul>
646
+ <li>added missing export of <code>setImmutable</code> to index</li>
647
+ </ul>
648
+
649
+ <a href="#030---2018-12-09" id="030---2018-12-09" style="color: inherit; text-decoration: none;">
650
+ <h2>[0.3.0] - 2018-12-09</h2>
651
+ </a>
652
+
653
+ <a href="#fixed-14" id="fixed-14" style="color: inherit; text-decoration: none;">
654
+ <h3>Fixed</h3>
655
+ </a>
656
+ <ul>
657
+ <li>missing labels in <code>set</code> tests</li>
658
+ <li>disabled removing unused labels in tests</li>
659
+ </ul>
660
+
661
+ <a href="#changed-14" id="changed-14" style="color: inherit; text-decoration: none;">
662
+ <h3>Changed</h3>
663
+ </a>
664
+ <ul>
665
+ <li>improved one <code>set</code> test</li>
666
+ </ul>
667
+
668
+ <a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
669
+ <h3>Added</h3>
670
+ </a>
671
+ <ul>
672
+ <li><code>setImmutable</code> method</li>
673
+ </ul>
674
+
675
+ <a href="#020-2018-12-09" id="020-2018-12-09" style="color: inherit; text-decoration: none;">
676
+ <h2>[0.2.0] 2018-12-09</h2>
677
+ </a>
678
+
679
+ <a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
680
+ <h3>Added</h3>
681
+ </a>
682
+ <ul>
683
+ <li><code>set</code> function</li>
684
+ <li></li>
685
+ </ul>
686
+ </div></div>
687
+ <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
688
+ <div class="tsd-navigation settings">
689
+ <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
690
+ <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> Settings</h3></summary>
691
+ <div class="tsd-accordion-details">
692
+ <div class="tsd-filter-visibility">
693
+ <h4 class="uppercase">Member Visibility</h4><form>
694
+ <ul id="tsd-filter-options">
695
+ <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
696
+ <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li>
697
+ <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
698
+ <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
699
+ <div class="tsd-theme-toggle">
700
+ <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
701
+ <nav class="tsd-navigation primary">
702
+ <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
703
+ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
704
+ <div class="tsd-accordion-details">
705
+ <ul>
706
+ <li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v1.5.0</a>
707
+ <ul>
708
+ <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
709
+ <li class="current selected pages-entry pages-entry-page pages-entry-depth-1"><a href="CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
710
+ <nav class="tsd-navigation secondary menu-sticky">
711
+ <ul>
712
+ <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"><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>Get<wbr/>Multiple<wbr/>Source</a></li>
713
+ <li class="tsd-kind-interface"><a href="../interfaces/GetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Get<wbr/>Source</a></li>
714
+ <li class="tsd-kind-interface"><a href="../interfaces/IsNumericStringOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Is<wbr/>Numeric<wbr/>String<wbr/>Options</a></li>
715
+ <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>
716
+ <li class="tsd-kind-interface"><a href="../interfaces/SetImmutableSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Immutable<wbr/>Source</a></li>
717
+ <li class="tsd-kind-interface"><a href="../interfaces/SetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Set<wbr/>Source</a></li>
718
+ <li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttle<wbr/>Options</a></li>
719
+ <li class="tsd-kind-interface"><a href="../interfaces/ThrottledFunctionExtras.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Throttled<wbr/>Function<wbr/>Extras</a></li>
720
+ <li class="tsd-kind-type-alias"><a href="../types/MapValuesFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Map<wbr/>Values<wbr/>Fn</a></li>
721
+ <li class="tsd-kind-type-alias"><a href="../types/MatchCallback.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Match<wbr/>Callback</a></li>
722
+ <li class="tsd-kind-type-alias"><a href="../types/SeqEarlyBreaker.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Early<wbr/>Breaker</a></li>
723
+ <li class="tsd-kind-type-alias"><a href="../types/SeqFn.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Fn</a></li>
724
+ <li class="tsd-kind-type-alias"><a href="../types/SeqFunctions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Seq<wbr/>Functions</a></li>
725
+ <li class="tsd-kind-type-alias"><a href="../types/SetImmutablePath.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Set<wbr/>Immutable<wbr/>Path</a></li>
726
+ <li class="tsd-kind-type-alias"><a href="../types/ThrottledFunction.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Throttled<wbr/>Function</a></li>
727
+ <li class="tsd-kind-variable"><a href="../variables/mapValuesUNSET.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-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-32-path"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)" id="icon-32-text"></path></svg>map<wbr/>ValuesUNSET</a></li>
728
+ <li class="tsd-kind-variable"><a href="../variables/mergeUNSET.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg>mergeUNSET</a></li>
729
+ <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>
730
+ <li class="tsd-kind-function"><a href="../functions/capitalize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>capitalize</a></li>
731
+ <li class="tsd-kind-function"><a href="../functions/coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
732
+ <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>
733
+ <li class="tsd-kind-function"><a href="../functions/ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
734
+ <li class="tsd-kind-function"><a href="../functions/ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
735
+ <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>
736
+ <li class="tsd-kind-function"><a href="../functions/ensurePrefix.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/>Prefix</a></li>
737
+ <li class="tsd-kind-function"><a href="../functions/ensureSuffix.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/>Suffix</a></li>
738
+ <li class="tsd-kind-function"><a href="../functions/ensureTimestamp.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/>Timestamp</a></li>
739
+ <li class="tsd-kind-function"><a href="../functions/escapeRegExp.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>escape<wbr/>Reg<wbr/>Exp</a></li>
740
+ <li class="tsd-kind-function"><a href="../functions/get.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>get</a></li>
741
+ <li class="tsd-kind-function"><a href="../functions/getMultiple.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>get<wbr/>Multiple</a></li>
742
+ <li class="tsd-kind-function"><a href="../functions/insertSeparator.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>insert<wbr/>Separator</a></li>
743
+ <li class="tsd-kind-function"><a href="../functions/isEmpty.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>is<wbr/>Empty</a></li>
744
+ <li class="tsd-kind-function"><a href="../functions/isNumericString.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>is<wbr/>Numeric<wbr/>String</a></li>
745
+ <li class="tsd-kind-function"><a href="../functions/isPlainObject.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>is<wbr/>Plain<wbr/>Object</a></li>
746
+ <li class="tsd-kind-function"><a href="../functions/last.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>last</a></li>
747
+ <li class="tsd-kind-function"><a href="../functions/mapAsync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>map<wbr/>Async</a></li>
748
+ <li class="tsd-kind-function"><a href="../functions/mapValues.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>map<wbr/>Values</a></li>
749
+ <li class="tsd-kind-function"><a href="../functions/match.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>match</a></li>
750
+ <li class="tsd-kind-function"><a href="../functions/merge.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>merge</a></li>
751
+ <li class="tsd-kind-function"><a href="../functions/mostFrequent.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>most<wbr/>Frequent</a></li>
752
+ <li class="tsd-kind-function"><a href="../functions/noop.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>noop</a></li>
753
+ <li class="tsd-kind-function"><a href="../functions/occurrences.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>occurrences</a></li>
754
+ <li class="tsd-kind-function"><a href="../functions/omit.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>omit</a></li>
755
+ <li class="tsd-kind-function"><a href="../functions/pick.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pick</a></li>
756
+ <li class="tsd-kind-function"><a href="../functions/pull.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>pull</a></li>
757
+ <li class="tsd-kind-function"><a href="../functions/remove.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>remove</a></li>
758
+ <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>
759
+ <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>
760
+ <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>
761
+ <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>
762
+ <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>
763
+ <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>
764
+ <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>
765
+ <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>
766
+ <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>
767
+ <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>
768
+ <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>
769
+ <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>
770
+ <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>
771
+ <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>
772
+ <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>
773
+ <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>
774
+ <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>
775
+ <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>
776
+ <div class="container tsd-generator">
777
+ <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
778
+ <div class="overlay"></div><script src="../assets/main.js"></script></body></html>