@ezez/utils 2.1.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +37 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/omit.d.ts +1 -1
- package/dist/omit.d.ts.map +1 -1
- package/dist/omit.js.map +1 -1
- package/dist/replace.d.ts.map +1 -1
- package/dist/replace.js.map +1 -1
- package/dist/replaceDeep.d.ts +5 -1
- package/dist/replaceDeep.d.ts.map +1 -1
- package/dist/replaceDeep.js +3 -20
- package/dist/replaceDeep.js.map +1 -1
- package/dist/replaceDeepByFn.d.ts +7 -0
- package/dist/replaceDeepByFn.d.ts.map +1 -0
- package/dist/replaceDeepByFn.js +47 -0
- package/dist/replaceDeepByFn.js.map +1 -0
- package/dist/safe.d.ts.map +1 -1
- package/dist/safe.js.map +1 -1
- package/dist/sample.d.ts +3 -0
- package/dist/sample.d.ts.map +1 -0
- package/dist/sample.js +8 -0
- package/dist/sample.js.map +1 -0
- package/dist/samples.d.ts +3 -0
- package/dist/samples.d.ts.map +1 -0
- package/dist/samples.js +28 -0
- package/dist/samples.js.map +1 -0
- package/dist/serialize.d.ts.map +1 -1
- package/dist/serialize.js +56 -18
- package/dist/serialize.js.map +1 -1
- package/dist/shuffle.d.ts +3 -0
- package/dist/shuffle.d.ts.map +1 -0
- package/dist/shuffle.js +9 -0
- package/dist/shuffle.js.map +1 -0
- package/dist/toggle.d.ts +3 -0
- package/dist/toggle.d.ts.map +1 -0
- package/dist/toggle.js +15 -0
- package/dist/toggle.js.map +1 -0
- package/dist/trim.d.ts +3 -0
- package/dist/trim.d.ts.map +1 -0
- package/dist/trim.js +10 -0
- package/dist/trim.js.map +1 -0
- package/dist/trimEnd.d.ts +3 -0
- package/dist/trimEnd.d.ts.map +1 -0
- package/dist/trimEnd.js +12 -0
- package/dist/trimEnd.js.map +1 -0
- package/dist/trimStart.d.ts +3 -0
- package/dist/trimStart.d.ts.map +1 -0
- package/dist/trimStart.js +12 -0
- package/dist/trimStart.js.map +1 -0
- package/dist/utils/utils.d.ts +6 -0
- package/dist/utils/utils.d.ts.map +1 -0
- package/dist/utils/utils.js +10 -0
- package/dist/utils/utils.js.map +1 -0
- package/dist/waitFor.d.ts +7 -1
- package/dist/waitFor.d.ts.map +1 -1
- package/dist/waitFor.js +35 -10
- package/dist/waitFor.js.map +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +12 -5
- package/docs/functions/capitalize.html +12 -5
- package/docs/functions/coalesce.html +12 -5
- package/docs/functions/compareArrays.html +12 -5
- package/docs/functions/compareProps.html +12 -5
- package/docs/functions/deserialize.html +12 -5
- package/docs/functions/ensureArray.html +12 -5
- package/docs/functions/ensureDate.html +12 -5
- package/docs/functions/ensureError.html +12 -5
- package/docs/functions/ensurePrefix.html +12 -5
- package/docs/functions/ensureSuffix.html +12 -5
- package/docs/functions/ensureTimestamp.html +12 -5
- package/docs/functions/escapeRegExp.html +12 -5
- package/docs/functions/formatDate.html +12 -5
- package/docs/functions/get.html +12 -5
- package/docs/functions/getMultiple.html +12 -5
- package/docs/functions/insertSeparator.html +12 -5
- package/docs/functions/isEmpty.html +12 -5
- package/docs/functions/isNumericString.html +12 -5
- package/docs/functions/isPlainObject.html +12 -5
- package/docs/functions/last.html +12 -5
- package/docs/functions/later-1.html +12 -5
- package/docs/functions/mapAsync.html +12 -5
- package/docs/functions/mapValues.html +12 -5
- package/docs/functions/match.html +12 -5
- package/docs/functions/merge.html +20 -13
- package/docs/functions/mostFrequent.html +12 -5
- package/docs/functions/noop.html +12 -5
- package/docs/functions/occurrences.html +12 -5
- package/docs/functions/omit.html +18 -7
- package/docs/functions/pick.html +13 -6
- package/docs/functions/pull.html +12 -5
- package/docs/functions/remove.html +12 -5
- package/docs/functions/removeCommonProperties.html +12 -5
- package/docs/functions/replace.html +12 -5
- package/docs/functions/replaceDeep.html +23 -7
- package/docs/functions/rethrow.html +12 -5
- package/docs/functions/round.html +12 -5
- package/docs/functions/safe.html +13 -6
- package/docs/functions/sample.html +149 -0
- package/docs/functions/samples.html +159 -0
- package/docs/functions/scale.html +12 -5
- package/docs/functions/seq.html +12 -5
- package/docs/functions/seqEarlyBreak.html +12 -5
- package/docs/functions/serialize.html +12 -5
- package/docs/functions/set.html +12 -5
- package/docs/functions/setImmutable.html +12 -5
- package/docs/functions/shuffle.html +149 -0
- package/docs/functions/sortBy.html +12 -5
- package/docs/functions/sortProps.html +12 -5
- package/docs/functions/stripPrefix.html +12 -5
- package/docs/functions/stripSuffix.html +12 -5
- package/docs/functions/throttle.html +12 -5
- package/docs/functions/toggle.html +154 -0
- package/docs/functions/trim.html +152 -0
- package/docs/functions/trimEnd.html +152 -0
- package/docs/functions/trimStart.html +152 -0
- package/docs/functions/truthy.html +12 -5
- package/docs/functions/unique.html +12 -5
- package/docs/functions/wait.html +12 -5
- package/docs/functions/waitFor.html +23 -18
- package/docs/functions/waitSync.html +12 -5
- package/docs/index.html +11 -4
- package/docs/interfaces/ComparePropsOptions.html +6 -6
- package/docs/interfaces/GetMultipleSource.html +12 -5
- package/docs/interfaces/GetSource.html +12 -5
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +12 -5
- package/docs/interfaces/SetSource.html +12 -5
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +18 -4
- package/docs/pages/CHANGELOG.html +150 -61
- package/docs/pages/Introduction.html +11 -4
- package/docs/types/CustomDeserializers.html +12 -5
- package/docs/types/CustomSerializers.html +12 -5
- package/docs/types/Later.html +12 -5
- package/docs/types/MapValuesFn.html +12 -5
- package/docs/types/MatchCallback.html +12 -5
- package/docs/types/SeqEarlyBreaker.html +12 -5
- package/docs/types/SeqFn.html +12 -5
- package/docs/types/SeqFunctions.html +12 -5
- package/docs/types/SetImmutablePath.html +12 -5
- package/docs/types/ThrottledFunction.html +12 -5
- package/docs/variables/mapValuesUNSET.html +12 -5
- package/docs/variables/mergeUNSET.html +12 -5
- package/esm/index.d.ts +7 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +7 -0
- package/esm/index.js.map +1 -1
- package/esm/omit.d.ts +1 -1
- package/esm/omit.d.ts.map +1 -1
- package/esm/omit.js.map +1 -1
- package/esm/replace.d.ts.map +1 -1
- package/esm/replace.js.map +1 -1
- package/esm/replaceDeep.d.ts +5 -1
- package/esm/replaceDeep.d.ts.map +1 -1
- package/esm/replaceDeep.js +3 -20
- package/esm/replaceDeep.js.map +1 -1
- package/esm/replaceDeepByFn.d.ts +7 -0
- package/esm/replaceDeepByFn.d.ts.map +1 -0
- package/esm/replaceDeepByFn.js +44 -0
- package/esm/replaceDeepByFn.js.map +1 -0
- package/esm/safe.d.ts.map +1 -1
- package/esm/safe.js.map +1 -1
- package/esm/sample.d.ts +3 -0
- package/esm/sample.d.ts.map +1 -0
- package/esm/sample.js +5 -0
- package/esm/sample.js.map +1 -0
- package/esm/samples.d.ts +3 -0
- package/esm/samples.d.ts.map +1 -0
- package/esm/samples.js +25 -0
- package/esm/samples.js.map +1 -0
- package/esm/serialize.d.ts.map +1 -1
- package/esm/serialize.js +56 -18
- package/esm/serialize.js.map +1 -1
- package/esm/shuffle.d.ts +3 -0
- package/esm/shuffle.d.ts.map +1 -0
- package/esm/shuffle.js +6 -0
- package/esm/shuffle.js.map +1 -0
- package/esm/toggle.d.ts +3 -0
- package/esm/toggle.d.ts.map +1 -0
- package/esm/toggle.js +12 -0
- package/esm/toggle.js.map +1 -0
- package/esm/trim.d.ts +3 -0
- package/esm/trim.d.ts.map +1 -0
- package/esm/trim.js +7 -0
- package/esm/trim.js.map +1 -0
- package/esm/trimEnd.d.ts +3 -0
- package/esm/trimEnd.d.ts.map +1 -0
- package/esm/trimEnd.js +9 -0
- package/esm/trimEnd.js.map +1 -0
- package/esm/trimStart.d.ts +3 -0
- package/esm/trimStart.d.ts.map +1 -0
- package/esm/trimStart.js +9 -0
- package/esm/trimStart.js.map +1 -0
- package/esm/utils/utils.d.ts +6 -0
- package/esm/utils/utils.d.ts.map +1 -0
- package/esm/utils/utils.js +7 -0
- package/esm/utils/utils.js.map +1 -0
- package/esm/waitFor.d.ts +7 -1
- package/esm/waitFor.d.ts.map +1 -1
- package/esm/waitFor.js +35 -10
- package/esm/waitFor.js.map +1 -1
- package/package.json +4 -4
- package/pnpm-lock.yaml +1162 -986
- package/src/deserialize.spec.ts +12 -0
- package/src/index.ts +7 -0
- package/src/omit.ts +8 -2
- package/src/pick.ts +1 -1
- package/src/replace.ts +0 -1
- package/src/replaceDeep.spec.ts +91 -0
- package/src/replaceDeep.ts +22 -27
- package/src/replaceDeepByFn.spec.ts +162 -0
- package/src/replaceDeepByFn.ts +93 -0
- package/src/safe.ts +0 -1
- package/src/sample.spec.ts +31 -0
- package/src/sample.ts +11 -0
- package/src/samples.spec.ts +50 -0
- package/src/samples.ts +41 -0
- package/src/serialize.spec.ts +42 -0
- package/src/serialize.ts +65 -18
- package/src/shuffle.spec.ts +39 -0
- package/src/shuffle.ts +13 -0
- package/src/toggle.spec.ts +43 -0
- package/src/toggle.ts +22 -0
- package/src/trim.spec.ts +22 -0
- package/src/trim.ts +23 -0
- package/src/trimEnd.spec.ts +20 -0
- package/src/trimEnd.ts +22 -0
- package/src/trimStart.spec.ts +20 -0
- package/src/trimStart.ts +22 -0
- package/src/utils/utils.ts +11 -0
- package/src/waitFor.spec.ts +141 -0
- 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 -
|
|
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 - v4.0.0</title><meta name="description" content="Documentation for @ezez/utils - v4.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,106 @@
|
|
|
6
6
|
<div id="tsd-toolbar-links"></div></div>
|
|
7
7
|
<ul class="results">
|
|
8
8
|
<li class="state loading">Preparing search index...</li>
|
|
9
|
-
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils -
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v4.0.0</a></div>
|
|
10
10
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
11
|
<div class="container container-main">
|
|
12
12
|
<div class="col-8 col-content">
|
|
13
13
|
<div class="tsd-page-title">
|
|
14
14
|
<ul class="tsd-breadcrumb">
|
|
15
|
-
<li><a href="../modules.html">@ezez/utils -
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v4.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
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="#unreleased" id="unreleased" style="color: inherit; text-decoration: none;">
|
|
23
|
+
<h2>[UNRELEASED]</h2>
|
|
24
|
+
</a>
|
|
25
|
+
<ul>
|
|
26
|
+
<li>(nothing yet)</li>
|
|
27
|
+
</ul>
|
|
28
|
+
|
|
29
|
+
<a href="#400---2024-05-16" id="400---2024-05-16" style="color: inherit; text-decoration: none;">
|
|
30
|
+
<h2>[4.0.0] - 2024-05-16</h2>
|
|
31
|
+
</a>
|
|
32
|
+
|
|
33
|
+
<a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
|
|
34
|
+
<h3>Breaking</h3>
|
|
35
|
+
</a>
|
|
36
|
+
<ul>
|
|
37
|
+
<li><code>replaceDeep</code> will not mutate anything by default anymore — previously it was wrongly documented as always mutating,
|
|
38
|
+
but it was not mutating objects. Mutating behavior can now be enabled and additionally controlled by defining if
|
|
39
|
+
instances properties are allowed to be mutated.</li>
|
|
40
|
+
<li>[<code>serialize</code>] to avoid excessive calls to serializer functions - they are now only called with non-plain objects or
|
|
41
|
+
unknown data types, this breaks some rare use cases</li>
|
|
42
|
+
</ul>
|
|
43
|
+
|
|
44
|
+
<a href="#changed" id="changed" style="color: inherit; text-decoration: none;">
|
|
45
|
+
<h3>Changed</h3>
|
|
46
|
+
</a>
|
|
47
|
+
<ul>
|
|
48
|
+
<li><code>serialize</code> custom serializers now allow things like <code>Date</code> (that defines .toJSON) to be supported as the user would
|
|
49
|
+
expect</li>
|
|
50
|
+
</ul>
|
|
51
|
+
|
|
52
|
+
<a href="#added" id="added" style="color: inherit; text-decoration: none;">
|
|
53
|
+
<h3>Added</h3>
|
|
54
|
+
</a>
|
|
55
|
+
<ul>
|
|
56
|
+
<li><code>replaceDeepByFn</code> method for more granular control over replacing values. <code>replaceDeep</code> is a simplified wrapper over
|
|
57
|
+
the new function</li>
|
|
58
|
+
<li><code>trim</code>, <code>trimStart</code>, and <code>trimEnd</code> methods</li>
|
|
59
|
+
</ul>
|
|
60
|
+
|
|
61
|
+
<a href="#dev" id="dev" style="color: inherit; text-decoration: none;">
|
|
62
|
+
<h3>Dev</h3>
|
|
63
|
+
</a>
|
|
64
|
+
<ul>
|
|
65
|
+
<li>upgraded some jsdocs</li>
|
|
66
|
+
</ul>
|
|
67
|
+
|
|
68
|
+
<a href="#300---2024-03-25" id="300---2024-03-25" style="color: inherit; text-decoration: none;">
|
|
69
|
+
<h2>[3.0.0] - 2024-03-25</h2>
|
|
70
|
+
</a>
|
|
71
|
+
|
|
72
|
+
<a href="#breaking-1" id="breaking-1" style="color: inherit; text-decoration: none;">
|
|
73
|
+
<h3>Breaking</h3>
|
|
74
|
+
</a>
|
|
75
|
+
<ul>
|
|
76
|
+
<li><code>waitFor</code> method was upgraded:<ul>
|
|
77
|
+
<li>now it supports Promises</li>
|
|
78
|
+
<li>the check fails only if <code>undefined</code>, <code>null</code> or <code>false</code> is given</li>
|
|
79
|
+
<li>function signature is changed (object options)</li>
|
|
80
|
+
<li><code>maxTries</code> option is added to have a limit of tries unrelated to time</li>
|
|
81
|
+
<li>no wait before the initial check</li>
|
|
82
|
+
</ul>
|
|
83
|
+
</li>
|
|
84
|
+
</ul>
|
|
85
|
+
|
|
86
|
+
<a href="#added-1" id="added-1" style="color: inherit; text-decoration: none;">
|
|
87
|
+
<h3>Added</h3>
|
|
88
|
+
</a>
|
|
89
|
+
<ul>
|
|
90
|
+
<li><code>toggle</code> method</li>
|
|
91
|
+
<li><code>sample</code> method</li>
|
|
92
|
+
<li><code>samples</code> method</li>
|
|
93
|
+
<li><code>shuffle</code> method</li>
|
|
94
|
+
</ul>
|
|
95
|
+
|
|
96
|
+
<a href="#dev-1" id="dev-1" style="color: inherit; text-decoration: none;">
|
|
97
|
+
<h3>Dev</h3>
|
|
98
|
+
</a>
|
|
99
|
+
<ul>
|
|
100
|
+
<li>added <code>waitFor</code> unit tests</li>
|
|
101
|
+
<li>added missing build files to repo (missing since 2.0.0)</li>
|
|
102
|
+
</ul>
|
|
103
|
+
|
|
22
104
|
<a href="#210---2023-10-29" id="210---2023-10-29" style="color: inherit; text-decoration: none;">
|
|
23
105
|
<h2>[2.1.0] - 2023-10-29</h2>
|
|
24
106
|
</a>
|
|
25
107
|
|
|
26
|
-
<a href="#added" id="added" style="color: inherit; text-decoration: none;">
|
|
108
|
+
<a href="#added-2" id="added-2" style="color: inherit; text-decoration: none;">
|
|
27
109
|
<h3>Added</h3>
|
|
28
110
|
</a>
|
|
29
111
|
<ul>
|
|
@@ -34,7 +116,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
34
116
|
<h2>[2.0.0] - 2023-10-09</h2>
|
|
35
117
|
</a>
|
|
36
118
|
|
|
37
|
-
<a href="#breaking" id="breaking" style="color: inherit; text-decoration: none;">
|
|
119
|
+
<a href="#breaking-2" id="breaking-2" style="color: inherit; text-decoration: none;">
|
|
38
120
|
<h3>Breaking</h3>
|
|
39
121
|
</a>
|
|
40
122
|
<ul>
|
|
@@ -42,7 +124,7 @@ and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semanti
|
|
|
42
124
|
transpile this lib yourself</li>
|
|
43
125
|
</ul>
|
|
44
126
|
|
|
45
|
-
<a href="#added-
|
|
127
|
+
<a href="#added-3" id="added-3" style="color: inherit; text-decoration: none;">
|
|
46
128
|
<h3>Added</h3>
|
|
47
129
|
</a>
|
|
48
130
|
<ul>
|
|
@@ -55,7 +137,7 @@ transpile this lib yourself</li>
|
|
|
55
137
|
<h2>[1.9.0] - 2023-07-07</h2>
|
|
56
138
|
</a>
|
|
57
139
|
|
|
58
|
-
<a href="#added-
|
|
140
|
+
<a href="#added-4" id="added-4" style="color: inherit; text-decoration: none;">
|
|
59
141
|
<h3>Added</h3>
|
|
60
142
|
</a>
|
|
61
143
|
<ul>
|
|
@@ -77,14 +159,14 @@ transpile this lib yourself</li>
|
|
|
77
159
|
<h2>[1.8.0] - 2023-06-03</h2>
|
|
78
160
|
</a>
|
|
79
161
|
|
|
80
|
-
<a href="#added-
|
|
162
|
+
<a href="#added-5" id="added-5" style="color: inherit; text-decoration: none;">
|
|
81
163
|
<h3>Added</h3>
|
|
82
164
|
</a>
|
|
83
165
|
<ul>
|
|
84
166
|
<li><code>formatDate</code> method</li>
|
|
85
167
|
</ul>
|
|
86
168
|
|
|
87
|
-
<a href="#dev" id="dev" style="color: inherit; text-decoration: none;">
|
|
169
|
+
<a href="#dev-2" id="dev-2" style="color: inherit; text-decoration: none;">
|
|
88
170
|
<h3>Dev</h3>
|
|
89
171
|
</a>
|
|
90
172
|
<ul>
|
|
@@ -95,7 +177,7 @@ transpile this lib yourself</li>
|
|
|
95
177
|
<h2>[1.7.0] - 2023-05-22</h2>
|
|
96
178
|
</a>
|
|
97
179
|
|
|
98
|
-
<a href="#added-
|
|
180
|
+
<a href="#added-6" id="added-6" style="color: inherit; text-decoration: none;">
|
|
99
181
|
<h3>Added</h3>
|
|
100
182
|
</a>
|
|
101
183
|
<ul>
|
|
@@ -106,7 +188,7 @@ transpile this lib yourself</li>
|
|
|
106
188
|
<h2>[1.6.0] - 2023-05-12</h2>
|
|
107
189
|
</a>
|
|
108
190
|
|
|
109
|
-
<a href="#added-
|
|
191
|
+
<a href="#added-7" id="added-7" style="color: inherit; text-decoration: none;">
|
|
110
192
|
<h3>Added</h3>
|
|
111
193
|
</a>
|
|
112
194
|
<ul>
|
|
@@ -117,7 +199,7 @@ transpile this lib yourself</li>
|
|
|
117
199
|
<h2>[1.5.0] - 2023-05-12</h2>
|
|
118
200
|
</a>
|
|
119
201
|
|
|
120
|
-
<a href="#added-
|
|
202
|
+
<a href="#added-8" id="added-8" style="color: inherit; text-decoration: none;">
|
|
121
203
|
<h3>Added</h3>
|
|
122
204
|
</a>
|
|
123
205
|
<ul>
|
|
@@ -129,7 +211,7 @@ transpile this lib yourself</li>
|
|
|
129
211
|
<h2>[1.4.0] - 2023-05-11</h2>
|
|
130
212
|
</a>
|
|
131
213
|
|
|
132
|
-
<a href="#added-
|
|
214
|
+
<a href="#added-9" id="added-9" style="color: inherit; text-decoration: none;">
|
|
133
215
|
<h3>Added</h3>
|
|
134
216
|
</a>
|
|
135
217
|
<ul>
|
|
@@ -142,14 +224,14 @@ transpile this lib yourself</li>
|
|
|
142
224
|
<h2>[1.3.0] - 2023-05-07</h2>
|
|
143
225
|
</a>
|
|
144
226
|
|
|
145
|
-
<a href="#added-
|
|
227
|
+
<a href="#added-10" id="added-10" style="color: inherit; text-decoration: none;">
|
|
146
228
|
<h3>Added</h3>
|
|
147
229
|
</a>
|
|
148
230
|
<ul>
|
|
149
231
|
<li><code>safe</code> method</li>
|
|
150
232
|
</ul>
|
|
151
233
|
|
|
152
|
-
<a href="#dev-
|
|
234
|
+
<a href="#dev-3" id="dev-3" style="color: inherit; text-decoration: none;">
|
|
153
235
|
<h3>Dev</h3>
|
|
154
236
|
</a>
|
|
155
237
|
<ul>
|
|
@@ -161,7 +243,7 @@ transpile this lib yourself</li>
|
|
|
161
243
|
<h2>[1.2.0] - 2023-03-01</h2>
|
|
162
244
|
</a>
|
|
163
245
|
|
|
164
|
-
<a href="#added-
|
|
246
|
+
<a href="#added-11" id="added-11" style="color: inherit; text-decoration: none;">
|
|
165
247
|
<h3>Added</h3>
|
|
166
248
|
</a>
|
|
167
249
|
<ul>
|
|
@@ -177,7 +259,7 @@ transpile this lib yourself</li>
|
|
|
177
259
|
<h2>[1.1.0] - 2023-02-20</h2>
|
|
178
260
|
</a>
|
|
179
261
|
|
|
180
|
-
<a href="#added-
|
|
262
|
+
<a href="#added-12" id="added-12" style="color: inherit; text-decoration: none;">
|
|
181
263
|
<h3>Added</h3>
|
|
182
264
|
</a>
|
|
183
265
|
<ul>
|
|
@@ -185,7 +267,7 @@ transpile this lib yourself</li>
|
|
|
185
267
|
<li><code>occurrences</code> method</li>
|
|
186
268
|
</ul>
|
|
187
269
|
|
|
188
|
-
<a href="#changed" id="changed" style="color: inherit; text-decoration: none;">
|
|
270
|
+
<a href="#changed-1" id="changed-1" style="color: inherit; text-decoration: none;">
|
|
189
271
|
<h3>Changed</h3>
|
|
190
272
|
</a>
|
|
191
273
|
<ul>
|
|
@@ -196,14 +278,14 @@ transpile this lib yourself</li>
|
|
|
196
278
|
<h2>[1.0.0] - 2023-02-19</h2>
|
|
197
279
|
</a>
|
|
198
280
|
|
|
199
|
-
<a href="#added-
|
|
281
|
+
<a href="#added-13" id="added-13" style="color: inherit; text-decoration: none;">
|
|
200
282
|
<h3>Added</h3>
|
|
201
283
|
</a>
|
|
202
284
|
<ul>
|
|
203
285
|
<li><code>isPlainObject</code> method</li>
|
|
204
286
|
</ul>
|
|
205
287
|
|
|
206
|
-
<a href="#breaking-
|
|
288
|
+
<a href="#breaking-3" id="breaking-3" style="color: inherit; text-decoration: none;">
|
|
207
289
|
<h3>Breaking</h3>
|
|
208
290
|
</a>
|
|
209
291
|
<ul>
|
|
@@ -216,7 +298,7 @@ transpile this lib yourself</li>
|
|
|
216
298
|
<li>replaced <code>mapValues.REMOVE</code> with <code>mapValuesUNSET</code></li>
|
|
217
299
|
</ul>
|
|
218
300
|
|
|
219
|
-
<a href="#changed-
|
|
301
|
+
<a href="#changed-2" id="changed-2" style="color: inherit; text-decoration: none;">
|
|
220
302
|
<h3>Changed</h3>
|
|
221
303
|
</a>
|
|
222
304
|
<ul>
|
|
@@ -224,7 +306,7 @@ transpile this lib yourself</li>
|
|
|
224
306
|
<li>in jsdoc added a warning to get/set and family about using them with TS</li>
|
|
225
307
|
</ul>
|
|
226
308
|
|
|
227
|
-
<a href="#dev-
|
|
309
|
+
<a href="#dev-4" id="dev-4" style="color: inherit; text-decoration: none;">
|
|
228
310
|
<h3>Dev</h3>
|
|
229
311
|
</a>
|
|
230
312
|
<ul>
|
|
@@ -238,7 +320,7 @@ transpile this lib yourself</li>
|
|
|
238
320
|
<h2>[0.24.1] - 2022-11-08</h2>
|
|
239
321
|
</a>
|
|
240
322
|
|
|
241
|
-
<a href="#dev-
|
|
323
|
+
<a href="#dev-5" id="dev-5" style="color: inherit; text-decoration: none;">
|
|
242
324
|
<h3>Dev</h3>
|
|
243
325
|
</a>
|
|
244
326
|
<ul>
|
|
@@ -250,14 +332,14 @@ transpile this lib yourself</li>
|
|
|
250
332
|
<h2>[0.24.0] - 2022-09-23</h2>
|
|
251
333
|
</a>
|
|
252
334
|
|
|
253
|
-
<a href="#added-
|
|
335
|
+
<a href="#added-14" id="added-14" style="color: inherit; text-decoration: none;">
|
|
254
336
|
<h3>Added</h3>
|
|
255
337
|
</a>
|
|
256
338
|
<ul>
|
|
257
339
|
<li><code>pull</code> method</li>
|
|
258
340
|
</ul>
|
|
259
341
|
|
|
260
|
-
<a href="#changed-
|
|
342
|
+
<a href="#changed-3" id="changed-3" style="color: inherit; text-decoration: none;">
|
|
261
343
|
<h3>Changed</h3>
|
|
262
344
|
</a>
|
|
263
345
|
<ul>
|
|
@@ -298,7 +380,7 @@ transpile this lib yourself</li>
|
|
|
298
380
|
<h2>[0.23.0] - 2022-07-17</h2>
|
|
299
381
|
</a>
|
|
300
382
|
|
|
301
|
-
<a href="#added-
|
|
383
|
+
<a href="#added-15" id="added-15" style="color: inherit; text-decoration: none;">
|
|
302
384
|
<h3>Added</h3>
|
|
303
385
|
</a>
|
|
304
386
|
<ul>
|
|
@@ -309,7 +391,7 @@ transpile this lib yourself</li>
|
|
|
309
391
|
<h2>[0.22.0] - 2022-07-16</h2>
|
|
310
392
|
</a>
|
|
311
393
|
|
|
312
|
-
<a href="#added-
|
|
394
|
+
<a href="#added-16" id="added-16" style="color: inherit; text-decoration: none;">
|
|
313
395
|
<h3>Added</h3>
|
|
314
396
|
</a>
|
|
315
397
|
<ul>
|
|
@@ -327,7 +409,7 @@ transpile this lib yourself</li>
|
|
|
327
409
|
<h2>[0.21.0] - 2022-07-08</h2>
|
|
328
410
|
</a>
|
|
329
411
|
|
|
330
|
-
<a href="#added-
|
|
412
|
+
<a href="#added-17" id="added-17" style="color: inherit; text-decoration: none;">
|
|
331
413
|
<h3>Added</h3>
|
|
332
414
|
</a>
|
|
333
415
|
<ul>
|
|
@@ -338,7 +420,7 @@ transpile this lib yourself</li>
|
|
|
338
420
|
<h2>[0.20.0] - 2022-07-03</h2>
|
|
339
421
|
</a>
|
|
340
422
|
|
|
341
|
-
<a href="#added-
|
|
423
|
+
<a href="#added-18" id="added-18" style="color: inherit; text-decoration: none;">
|
|
342
424
|
<h3>Added</h3>
|
|
343
425
|
</a>
|
|
344
426
|
<ul>
|
|
@@ -360,14 +442,14 @@ transpile this lib yourself</li>
|
|
|
360
442
|
<h2>[0.19.0] - 2022-04-27</h2>
|
|
361
443
|
</a>
|
|
362
444
|
|
|
363
|
-
<a href="#added-
|
|
445
|
+
<a href="#added-19" id="added-19" style="color: inherit; text-decoration: none;">
|
|
364
446
|
<h3>Added</h3>
|
|
365
447
|
</a>
|
|
366
448
|
<ul>
|
|
367
449
|
<li><code>scale</code>, <code>truthy</code>, <code>waitFor</code>, <code>cap</code> methods</li>
|
|
368
450
|
</ul>
|
|
369
451
|
|
|
370
|
-
<a href="#changed-
|
|
452
|
+
<a href="#changed-4" id="changed-4" style="color: inherit; text-decoration: none;">
|
|
371
453
|
<h3>Changed</h3>
|
|
372
454
|
</a>
|
|
373
455
|
<ul>
|
|
@@ -375,7 +457,7 @@ transpile this lib yourself</li>
|
|
|
375
457
|
<li>added/improved jsdoc to <code>mapAsync</code>, <code>match</code>, <code>merge</code>, <code>noop</code>, <code>rethrow</code></li>
|
|
376
458
|
</ul>
|
|
377
459
|
|
|
378
|
-
<a href="#breaking-
|
|
460
|
+
<a href="#breaking-4" id="breaking-4" style="color: inherit; text-decoration: none;">
|
|
379
461
|
<h3>Breaking</h3>
|
|
380
462
|
</a>
|
|
381
463
|
<ul>
|
|
@@ -386,7 +468,7 @@ transpile this lib yourself</li>
|
|
|
386
468
|
<h2>[0.18.0] - 2021-12-04</h2>
|
|
387
469
|
</a>
|
|
388
470
|
|
|
389
|
-
<a href="#added-
|
|
471
|
+
<a href="#added-20" id="added-20" style="color: inherit; text-decoration: none;">
|
|
390
472
|
<h3>Added</h3>
|
|
391
473
|
</a>
|
|
392
474
|
<ul>
|
|
@@ -409,14 +491,14 @@ transpile this lib yourself</li>
|
|
|
409
491
|
<h2>[0.17.0] - 2021-10-31</h2>
|
|
410
492
|
</a>
|
|
411
493
|
|
|
412
|
-
<a href="#added-
|
|
494
|
+
<a href="#added-21" id="added-21" style="color: inherit; text-decoration: none;">
|
|
413
495
|
<h3>Added</h3>
|
|
414
496
|
</a>
|
|
415
497
|
<ul>
|
|
416
498
|
<li><code>merge</code> method</li>
|
|
417
499
|
</ul>
|
|
418
500
|
|
|
419
|
-
<a href="#changed-
|
|
501
|
+
<a href="#changed-5" id="changed-5" style="color: inherit; text-decoration: none;">
|
|
420
502
|
<h3>Changed</h3>
|
|
421
503
|
</a>
|
|
422
504
|
<ul>
|
|
@@ -427,7 +509,7 @@ transpile this lib yourself</li>
|
|
|
427
509
|
<h2>[0.16.0] - 2021-09-24</h2>
|
|
428
510
|
</a>
|
|
429
511
|
|
|
430
|
-
<a href="#added-
|
|
512
|
+
<a href="#added-22" id="added-22" style="color: inherit; text-decoration: none;">
|
|
431
513
|
<h3>Added</h3>
|
|
432
514
|
</a>
|
|
433
515
|
<ul>
|
|
@@ -438,14 +520,14 @@ transpile this lib yourself</li>
|
|
|
438
520
|
<h2>[0.15.0] - 2021-07-04</h2>
|
|
439
521
|
</a>
|
|
440
522
|
|
|
441
|
-
<a href="#added-
|
|
523
|
+
<a href="#added-23" id="added-23" style="color: inherit; text-decoration: none;">
|
|
442
524
|
<h3>Added</h3>
|
|
443
525
|
</a>
|
|
444
526
|
<ul>
|
|
445
527
|
<li><code>seq</code> with early break mode</li>
|
|
446
528
|
</ul>
|
|
447
529
|
|
|
448
|
-
<a href="#changed-
|
|
530
|
+
<a href="#changed-6" id="changed-6" style="color: inherit; text-decoration: none;">
|
|
449
531
|
<h3>Changed</h3>
|
|
450
532
|
</a>
|
|
451
533
|
<ul>
|
|
@@ -456,7 +538,7 @@ transpile this lib yourself</li>
|
|
|
456
538
|
<h2>[0.14.1] - 2021-06-13</h2>
|
|
457
539
|
</a>
|
|
458
540
|
|
|
459
|
-
<a href="#changed-
|
|
541
|
+
<a href="#changed-7" id="changed-7" style="color: inherit; text-decoration: none;">
|
|
460
542
|
<h3>Changed</h3>
|
|
461
543
|
</a>
|
|
462
544
|
<ul>
|
|
@@ -467,14 +549,14 @@ transpile this lib yourself</li>
|
|
|
467
549
|
<h2>[0.14.0] - 2021-06-05</h2>
|
|
468
550
|
</a>
|
|
469
551
|
|
|
470
|
-
<a href="#changed-
|
|
552
|
+
<a href="#changed-8" id="changed-8" style="color: inherit; text-decoration: none;">
|
|
471
553
|
<h3>Changed</h3>
|
|
472
554
|
</a>
|
|
473
555
|
<ul>
|
|
474
556
|
<li>upgraded typings for sortBy</li>
|
|
475
557
|
</ul>
|
|
476
558
|
|
|
477
|
-
<a href="#added-
|
|
559
|
+
<a href="#added-24" id="added-24" style="color: inherit; text-decoration: none;">
|
|
478
560
|
<h3>Added</h3>
|
|
479
561
|
</a>
|
|
480
562
|
<ul>
|
|
@@ -485,7 +567,7 @@ transpile this lib yourself</li>
|
|
|
485
567
|
<h2>[0.13.2] - 2021-05-16</h2>
|
|
486
568
|
</a>
|
|
487
569
|
|
|
488
|
-
<a href="#changed-
|
|
570
|
+
<a href="#changed-9" id="changed-9" style="color: inherit; text-decoration: none;">
|
|
489
571
|
<h3>Changed</h3>
|
|
490
572
|
</a>
|
|
491
573
|
<ul>
|
|
@@ -496,14 +578,14 @@ transpile this lib yourself</li>
|
|
|
496
578
|
<h2>[0.13.1] - 2021-04-14</h2>
|
|
497
579
|
</a>
|
|
498
580
|
|
|
499
|
-
<a href="#changed-
|
|
581
|
+
<a href="#changed-10" id="changed-10" style="color: inherit; text-decoration: none;">
|
|
500
582
|
<h3>Changed</h3>
|
|
501
583
|
</a>
|
|
502
584
|
<ul>
|
|
503
585
|
<li>upgraded typings for mapValues</li>
|
|
504
586
|
</ul>
|
|
505
587
|
|
|
506
|
-
<a href="#dev-
|
|
588
|
+
<a href="#dev-6" id="dev-6" style="color: inherit; text-decoration: none;">
|
|
507
589
|
<h3>Dev</h3>
|
|
508
590
|
</a>
|
|
509
591
|
<ul>
|
|
@@ -516,7 +598,7 @@ transpile this lib yourself</li>
|
|
|
516
598
|
<h2>[0.13.0] - 2021-02-03</h2>
|
|
517
599
|
</a>
|
|
518
600
|
|
|
519
|
-
<a href="#added-
|
|
601
|
+
<a href="#added-25" id="added-25" style="color: inherit; text-decoration: none;">
|
|
520
602
|
<h3>Added</h3>
|
|
521
603
|
</a>
|
|
522
604
|
<ul>
|
|
@@ -529,7 +611,7 @@ transpile this lib yourself</li>
|
|
|
529
611
|
<h2>[0.12.0] - 2021-01-19</h2>
|
|
530
612
|
</a>
|
|
531
613
|
|
|
532
|
-
<a href="#added-
|
|
614
|
+
<a href="#added-26" id="added-26" style="color: inherit; text-decoration: none;">
|
|
533
615
|
<h3>Added</h3>
|
|
534
616
|
</a>
|
|
535
617
|
<ul>
|
|
@@ -540,7 +622,7 @@ transpile this lib yourself</li>
|
|
|
540
622
|
<h2>[0.11.0-beta.2] - 2021-01-08</h2>
|
|
541
623
|
</a>
|
|
542
624
|
|
|
543
|
-
<a href="#dev-
|
|
625
|
+
<a href="#dev-7" id="dev-7" style="color: inherit; text-decoration: none;">
|
|
544
626
|
<h3>Dev</h3>
|
|
545
627
|
</a>
|
|
546
628
|
<ul>
|
|
@@ -549,7 +631,7 @@ transpile this lib yourself</li>
|
|
|
549
631
|
<li>replaced jsdoc with typedoc</li>
|
|
550
632
|
</ul>
|
|
551
633
|
|
|
552
|
-
<a href="#changed-
|
|
634
|
+
<a href="#changed-11" id="changed-11" style="color: inherit; text-decoration: none;">
|
|
553
635
|
<h3>Changed</h3>
|
|
554
636
|
</a>
|
|
555
637
|
<ul>
|
|
@@ -571,7 +653,7 @@ transpile this lib yourself</li>
|
|
|
571
653
|
<h2>[0.10.0] - 2020-09-14</h2>
|
|
572
654
|
</a>
|
|
573
655
|
|
|
574
|
-
<a href="#added-
|
|
656
|
+
<a href="#added-27" id="added-27" style="color: inherit; text-decoration: none;">
|
|
575
657
|
<h3>Added</h3>
|
|
576
658
|
</a>
|
|
577
659
|
<ul>
|
|
@@ -582,7 +664,7 @@ transpile this lib yourself</li>
|
|
|
582
664
|
<h2>[0.9.0] - 2020-07-09</h2>
|
|
583
665
|
</a>
|
|
584
666
|
|
|
585
|
-
<a href="#added-
|
|
667
|
+
<a href="#added-28" id="added-28" style="color: inherit; text-decoration: none;">
|
|
586
668
|
<h3>Added</h3>
|
|
587
669
|
</a>
|
|
588
670
|
<ul>
|
|
@@ -600,7 +682,7 @@ transpile this lib yourself</li>
|
|
|
600
682
|
<li>CommonJS code still not working properly</li>
|
|
601
683
|
</ul>
|
|
602
684
|
|
|
603
|
-
<a href="#changed-
|
|
685
|
+
<a href="#changed-12" id="changed-12" style="color: inherit; text-decoration: none;">
|
|
604
686
|
<h3>Changed</h3>
|
|
605
687
|
</a>
|
|
606
688
|
<ul>
|
|
@@ -623,14 +705,14 @@ transpile this lib yourself</li>
|
|
|
623
705
|
<h2>[0.7.0] - 2020-03-10</h2>
|
|
624
706
|
</a>
|
|
625
707
|
|
|
626
|
-
<a href="#added-
|
|
708
|
+
<a href="#added-29" id="added-29" style="color: inherit; text-decoration: none;">
|
|
627
709
|
<h3>Added</h3>
|
|
628
710
|
</a>
|
|
629
711
|
<ul>
|
|
630
712
|
<li>native ESM support</li>
|
|
631
713
|
</ul>
|
|
632
714
|
|
|
633
|
-
<a href="#changed-
|
|
715
|
+
<a href="#changed-13" id="changed-13" style="color: inherit; text-decoration: none;">
|
|
634
716
|
<h3>Changed</h3>
|
|
635
717
|
</a>
|
|
636
718
|
<ul>
|
|
@@ -682,14 +764,14 @@ transpile this lib yourself</li>
|
|
|
682
764
|
<h2>[0.6.0] - 2019-05-12</h2>
|
|
683
765
|
</a>
|
|
684
766
|
|
|
685
|
-
<a href="#added-
|
|
767
|
+
<a href="#added-30" id="added-30" style="color: inherit; text-decoration: none;">
|
|
686
768
|
<h3>Added</h3>
|
|
687
769
|
</a>
|
|
688
770
|
<ul>
|
|
689
771
|
<li><code>pick</code> and <code>omit</code> methods</li>
|
|
690
772
|
</ul>
|
|
691
773
|
|
|
692
|
-
<a href="#changed-
|
|
774
|
+
<a href="#changed-14" id="changed-14" style="color: inherit; text-decoration: none;">
|
|
693
775
|
<h3>Changed</h3>
|
|
694
776
|
</a>
|
|
695
777
|
<ul>
|
|
@@ -700,7 +782,7 @@ transpile this lib yourself</li>
|
|
|
700
782
|
<h2>[0.5.0] - 2019-04-09</h2>
|
|
701
783
|
</a>
|
|
702
784
|
|
|
703
|
-
<a href="#added-
|
|
785
|
+
<a href="#added-31" id="added-31" style="color: inherit; text-decoration: none;">
|
|
704
786
|
<h3>Added</h3>
|
|
705
787
|
</a>
|
|
706
788
|
<ul>
|
|
@@ -722,7 +804,7 @@ transpile this lib yourself</li>
|
|
|
722
804
|
<h2>[0.4.0] - 2019-01-30</h2>
|
|
723
805
|
</a>
|
|
724
806
|
|
|
725
|
-
<a href="#added-
|
|
807
|
+
<a href="#added-32" id="added-32" style="color: inherit; text-decoration: none;">
|
|
726
808
|
<h3>Added</h3>
|
|
727
809
|
</a>
|
|
728
810
|
<ul>
|
|
@@ -752,14 +834,14 @@ transpile this lib yourself</li>
|
|
|
752
834
|
<li>disabled removing unused labels in tests</li>
|
|
753
835
|
</ul>
|
|
754
836
|
|
|
755
|
-
<a href="#changed-
|
|
837
|
+
<a href="#changed-15" id="changed-15" style="color: inherit; text-decoration: none;">
|
|
756
838
|
<h3>Changed</h3>
|
|
757
839
|
</a>
|
|
758
840
|
<ul>
|
|
759
841
|
<li>improved one <code>set</code> test</li>
|
|
760
842
|
</ul>
|
|
761
843
|
|
|
762
|
-
<a href="#added-
|
|
844
|
+
<a href="#added-33" id="added-33" style="color: inherit; text-decoration: none;">
|
|
763
845
|
<h3>Added</h3>
|
|
764
846
|
</a>
|
|
765
847
|
<ul>
|
|
@@ -770,7 +852,7 @@ transpile this lib yourself</li>
|
|
|
770
852
|
<h2>[0.2.0] 2018-12-09</h2>
|
|
771
853
|
</a>
|
|
772
854
|
|
|
773
|
-
<a href="#added-
|
|
855
|
+
<a href="#added-34" id="added-34" style="color: inherit; text-decoration: none;">
|
|
774
856
|
<h3>Added</h3>
|
|
775
857
|
</a>
|
|
776
858
|
<ul>
|
|
@@ -797,7 +879,7 @@ transpile this lib yourself</li>
|
|
|
797
879
|
<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>
|
|
798
880
|
<div class="tsd-accordion-details">
|
|
799
881
|
<ul>
|
|
800
|
-
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/>
|
|
882
|
+
<li class="current"><a href="../modules.html">@ezez/utils -<wbr/> v4.0.0</a>
|
|
801
883
|
<ul>
|
|
802
884
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="Introduction.html">Introduction</a></li>
|
|
803
885
|
<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>
|
|
@@ -863,17 +945,24 @@ transpile this lib yourself</li>
|
|
|
863
945
|
<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>
|
|
864
946
|
<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>
|
|
865
947
|
<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>
|
|
948
|
+
<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>
|
|
949
|
+
<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>
|
|
866
950
|
<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>
|
|
867
951
|
<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>
|
|
868
952
|
<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>
|
|
869
953
|
<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>
|
|
870
954
|
<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>
|
|
871
955
|
<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>
|
|
956
|
+
<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>
|
|
872
957
|
<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>
|
|
873
958
|
<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>
|
|
874
959
|
<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>
|
|
875
960
|
<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>
|
|
876
961
|
<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>
|
|
962
|
+
<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>
|
|
963
|
+
<li class="tsd-kind-function"><a href="../functions/trim.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>trim</a></li>
|
|
964
|
+
<li class="tsd-kind-function"><a href="../functions/trimEnd.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>trim<wbr/>End</a></li>
|
|
965
|
+
<li class="tsd-kind-function"><a href="../functions/trimStart.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>trim<wbr/>Start</a></li>
|
|
877
966
|
<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>
|
|
878
967
|
<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>
|
|
879
968
|
<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>
|