Skip to content

Commit facea5e

Browse files
committed
Auto-generated commit
1 parent 9f06ebe commit facea5e

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-11-06)
7+
## Unreleased (2025-11-07)
88

99
<section class="features">
1010

@@ -162,6 +162,7 @@ A total of 18 issues were closed in this release:
162162

163163
<details>
164164

165+
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
165166
- [`7e82b0c`](https://github.com/stdlib-js/stdlib/commit/7e82b0ca1438082723d163849d06b76ed335a883) - **chore:** fix JavaScript lint errors [(#8400)](https://github.com/stdlib-js/stdlib/pull/8400) _(by Rasim Bhat, Athan Reines)_
166167
- [`67a57a2`](https://github.com/stdlib-js/stdlib/commit/67a57a2861401202eb362b67971cf023ecf1518b) - **docs:** refactor example to use array PRNG [(#8233)](https://github.com/stdlib-js/stdlib/pull/8233) _(by Udit Agarwal, Athan Reines)_
167168
- [`de7f81a`](https://github.com/stdlib-js/stdlib/commit/de7f81a291cbabdd093f465844316bdff3a363b9) - **chore:** fix JavaScript lint errors [(#8261)](https://github.com/stdlib-js/stdlib/pull/8261) _(by Payal Goswami)_

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ The namespace has the following sub-namespaces:
9292

9393
- <span class="signature">[`anyByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by-right]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.</span>
9494
- <span class="signature">[`anyBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a collection passes a test implemented by a predicate function.</span>
95+
- <span class="signature">[`anyInBy( object, predicate[, thisArg ] )`][@stdlib/utils/any-in-by]</span><span class="delimiter">: </span><span class="description">test whether at least one property in an object passes a test implemented by a predicate function.</span>
96+
- <span class="signature">[`anyOwnBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-own-by]</span><span class="delimiter">: </span><span class="description">test whether at least one own property of a provided object passes a test implemented by a predicate function.</span>
9597
- <span class="signature">[`any( collection )`][@stdlib/utils/any]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a collection is truthy.</span>
9698
- <span class="signature">[`append( collection1, collection2 )`][@stdlib/utils/append]</span><span class="delimiter">: </span><span class="description">add elements from one collection to the end of another collection.</span>
9799
- <span class="signature">[`bifurcateBy( collection, [options,] predicate )`][@stdlib/utils/bifurcate-by]</span><span class="delimiter">: </span><span class="description">split values into two groups according to a predicate function.</span>
@@ -114,6 +116,7 @@ The namespace has the following sub-namespaces:
114116
- <span class="signature">[`keyBy( collection, fcn[, thisArg ] )`][@stdlib/utils/key-by]</span><span class="delimiter">: </span><span class="description">convert a collection to an object whose keys are determined by a provided function and whose values are the collection values.</span>
115117
- <span class="signature">[`noneByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by-right]</span><span class="delimiter">: </span><span class="description">test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.</span>
116118
- <span class="signature">[`noneBy( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by]</span><span class="delimiter">: </span><span class="description">test whether all elements in a collection fail a test implemented by a predicate function.</span>
119+
- <span class="signature">[`noneOwnBy( object, predicate[, thisArg ] )`][@stdlib/utils/none-own-by]</span><span class="delimiter">: </span><span class="description">tests whether every own property of an object fails a test implemented by a predicate function.</span>
117120
- <span class="signature">[`none( collection )`][@stdlib/utils/none]</span><span class="delimiter">: </span><span class="description">test whether all elements in a collection are falsy.</span>
118121
- <span class="signature">[`pop( collection )`][@stdlib/utils/pop]</span><span class="delimiter">: </span><span class="description">remove and return the last element of a collection.</span>
119122
- <span class="signature">[`prepend( collection1, collection2 )`][@stdlib/utils/prepend]</span><span class="delimiter">: </span><span class="description">add elements from one collection to the beginning of another collection.</span>
@@ -124,6 +127,7 @@ The namespace has the following sub-namespaces:
124127
- <span class="signature">[`shift( collection )`][@stdlib/utils/shift]</span><span class="delimiter">: </span><span class="description">remove and return the first element of a collection.</span>
125128
- <span class="signature">[`someByRight( collection, n, predicate[, thisArg ] )`][@stdlib/utils/some-by-right]</span><span class="delimiter">: </span><span class="description">test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.</span>
126129
- <span class="signature">[`someBy( collection, n, predicate[, thisArg ] )`][@stdlib/utils/some-by]</span><span class="delimiter">: </span><span class="description">test whether a collection contains at least `n` elements which pass a test implemented by a predicate function.</span>
130+
- <span class="signature">[`someOwnBy( obj, n, predicate[, thisArg ] )`][@stdlib/utils/some-own-by]</span><span class="delimiter">: </span><span class="description">test whether an object contains at least `n` own properties which pass a test implemented by a predicate function.</span>
127131
- <span class="signature">[`some( collection, n )`][@stdlib/utils/some]</span><span class="delimiter">: </span><span class="description">test whether a collection contains at least `n` elements which are truthy.</span>
128132
- <span class="signature">[`tabulateBy( collection[, options,] indicator )`][@stdlib/utils/tabulate-by]</span><span class="delimiter">: </span><span class="description">generate a frequency table according to an indicator function.</span>
129133
- <span class="signature">[`tabulate( collection )`][@stdlib/utils/tabulate]</span><span class="delimiter">: </span><span class="description">generate a frequency table.</span>
@@ -345,6 +349,7 @@ The namespace has the following sub-namespaces:
345349
- <span class="signature">[`openURL()`][@stdlib/utils/open-url]</span><span class="delimiter">: </span><span class="description">open a URL.</span>
346350
- <span class="signature">[`parallel( files, [options,] clbk )`][@stdlib/utils/parallel]</span><span class="delimiter">: </span><span class="description">execute scripts in parallel.</span>
347351
- <span class="signature">[`parseJSON( str[, reviver] )`][@stdlib/utils/parse-json]</span><span class="delimiter">: </span><span class="description">parse a string as JSON.</span>
352+
- <span class="signature">[`parseNDJSON( str[, reviver] )`][@stdlib/utils/parse-ndjson]</span><span class="delimiter">: </span><span class="description">parse a string containing serialized newline-delimited JSON (NDJSON).</span>
348353
- <span class="signature">[`realmax( dtype )`][@stdlib/utils/real-max]</span><span class="delimiter">: </span><span class="description">return the maximum finite value capable of being represented by a numeric real type.</span>
349354
- <span class="signature">[`realmin( dtype )`][@stdlib/utils/real-min]</span><span class="delimiter">: </span><span class="description">return the smallest positive normal value capable of being represented by a numeric real type.</span>
350355
- <span class="signature">[`reFromString( str )`][@stdlib/utils/regexp-from-string]</span><span class="delimiter">: </span><span class="description">create a regular expression from a regular expression string.</span>
@@ -527,6 +532,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
527532

528533
[@stdlib/utils/parse-json]: https://github.com/stdlib-js/utils/tree/main/parse-json
529534

535+
[@stdlib/utils/parse-ndjson]: https://github.com/stdlib-js/utils/tree/main/parse-ndjson
536+
530537
[@stdlib/utils/real-max]: https://github.com/stdlib-js/utils/tree/main/real-max
531538

532539
[@stdlib/utils/real-min]: https://github.com/stdlib-js/utils/tree/main/real-min
@@ -805,6 +812,10 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
805812

806813
[@stdlib/utils/any-by]: https://github.com/stdlib-js/utils/tree/main/any-by
807814

815+
[@stdlib/utils/any-in-by]: https://github.com/stdlib-js/utils/tree/main/any-in-by
816+
817+
[@stdlib/utils/any-own-by]: https://github.com/stdlib-js/utils/tree/main/any-own-by
818+
808819
[@stdlib/utils/any]: https://github.com/stdlib-js/utils/tree/main/any
809820

810821
[@stdlib/utils/append]: https://github.com/stdlib-js/utils/tree/main/append
@@ -849,6 +860,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
849860

850861
[@stdlib/utils/none-by]: https://github.com/stdlib-js/utils/tree/main/none-by
851862

863+
[@stdlib/utils/none-own-by]: https://github.com/stdlib-js/utils/tree/main/none-own-by
864+
852865
[@stdlib/utils/none]: https://github.com/stdlib-js/utils/tree/main/none
853866

854867
[@stdlib/utils/pop]: https://github.com/stdlib-js/utils/tree/main/pop
@@ -869,6 +882,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
869882

870883
[@stdlib/utils/some-by]: https://github.com/stdlib-js/utils/tree/main/some-by
871884

885+
[@stdlib/utils/some-own-by]: https://github.com/stdlib-js/utils/tree/main/some-own-by
886+
872887
[@stdlib/utils/some]: https://github.com/stdlib-js/utils/tree/main/some
873888

874889
[@stdlib/utils/tabulate-by]: https://github.com/stdlib-js/utils/tree/main/tabulate-by

async/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ var o = ns;
6565
- <span class="signature">[`mapValuesAsync( obj, [options,] transform, done )`][@stdlib/utils/async/map-values]</span><span class="delimiter">: </span><span class="description">map values from one object to a new object having the same keys.</span>
6666
- <span class="signature">[`noneByRightAsync( collection, [options,] predicate, done )`][@stdlib/utils/async/none-by-right]</span><span class="delimiter">: </span><span class="description">test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.</span>
6767
- <span class="signature">[`noneByAsync( collection, [options,] predicate, done )`][@stdlib/utils/async/none-by]</span><span class="delimiter">: </span><span class="description">test whether all elements in a collection fail a test implemented by a predicate function.</span>
68+
- <span class="signature">[`parallel( fcns, [options,] done )`][@stdlib/utils/async/parallel]</span><span class="delimiter">: </span><span class="description">execute functions in parallel and pass the results of all functions to a provided callback.</span>
6869
- <span class="signature">[`reduceRightAsync( collection, initial, [options,] reducer, done )`][@stdlib/utils/async/reduce-right]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.</span>
6970
- <span class="signature">[`reduceAsync( collection, initial, [options,] reducer, done )`][@stdlib/utils/async/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
7071
- <span class="signature">[`waterfall( fcns, clbk[, thisArg] )`][@stdlib/utils/async/series-waterfall]</span><span class="delimiter">: </span><span class="description">execute functions in series, passing the results of one function as arguments to the next function.</span>
@@ -161,6 +162,8 @@ console.log( objectKeys( ns ) );
161162

162163
[@stdlib/utils/async/none-by]: https://github.com/stdlib-js/utils/tree/main/async/none-by
163164

165+
[@stdlib/utils/async/parallel]: https://github.com/stdlib-js/utils/tree/main/async/parallel
166+
164167
[@stdlib/utils/async/reduce-right]: https://github.com/stdlib-js/utils/tree/main/async/reduce-right
165168

166169
[@stdlib/utils/async/reduce]: https://github.com/stdlib-js/utils/tree/main/async/reduce

0 commit comments

Comments
 (0)