Skip to content

Commit 8bbb989

Browse files
committed
Auto-generated commit
1 parent 872e8a1 commit 8bbb989

File tree

4 files changed

+51
-2
lines changed

4 files changed

+51
-2
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-08-21)
7+
## Unreleased (2025-09-01)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`0bc9823`](https://github.com/stdlib-js/stdlib/commit/0bc98238e0d5e4991912848ef6069a753343eaa1) - add missing exports to `utils` namespace
1314
- [`9818fa6`](https://github.com/stdlib-js/stdlib/commit/9818fa6dd8c90e045a147bfd1ba83cb1f693d17b) - update namespace TypeScript declarations [(#3259)](https://github.com/stdlib-js/stdlib/pull/3259)
1415
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190)
1516

@@ -157,6 +158,8 @@ A total of 7 issues were closed in this release:
157158

158159
<details>
159160

161+
- [`0bc9823`](https://github.com/stdlib-js/stdlib/commit/0bc98238e0d5e4991912848ef6069a753343eaa1) - **feat:** add missing exports to `utils` namespace _(by Philipp Burckhardt)_
162+
- [`8a6dbd7`](https://github.com/stdlib-js/stdlib/commit/8a6dbd7bf692bcd9ce166a7370eda0a7410da3b0) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_
160163
- [`d2b9b0c`](https://github.com/stdlib-js/stdlib/commit/d2b9b0c10f35487713f6925c360b504a1f9e0a14) - **chore:** address commit comments for commit `1acd7fc` [(#7917)](https://github.com/stdlib-js/stdlib/pull/7917) _(by Srinivas Batthula, Philipp Burckhardt)_
161164
- [`e9c5955`](https://github.com/stdlib-js/stdlib/commit/e9c5955756fe9c633f6f67e42882394cc7c50148) - **docs:** update annotation to convey there may be inherited props _(by Philipp Burckhardt)_
162165
- [`bef0f69`](https://github.com/stdlib-js/stdlib/commit/bef0f69a3c1007126ef264c4148c41497079eaad) - **docs:** re-order requires _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ Sivam Das <[email protected]>
189189
Snehil Shah <[email protected]>
190190
Soumajit Chatterjee <[email protected]>
191191
Spandan Barve <[email protected]>
192+
Srinivas Batthula <[email protected]>
192193
Stephannie Jiménez Gacha <[email protected]>
193194
Suhaib Ilahi <[email protected]>
194195
Suraj Kumar <[email protected]>

lib/index.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,24 @@ setReadOnly( utils, 'anyBy', require( './../any-by' ) );
6767
*/
6868
setReadOnly( utils, 'anyByRight', require( './../any-by-right' ) );
6969

70+
/**
71+
* @name anyInBy
72+
* @memberof utils
73+
* @readonly
74+
* @type {Function}
75+
* @see {@link module:@stdlib/utils/any-in-by}
76+
*/
77+
setReadOnly( utils, 'anyInBy', require( './../any-in-by' ) );
78+
79+
/**
80+
* @name anyOwnBy
81+
* @memberof utils
82+
* @readonly
83+
* @type {Function}
84+
* @see {@link module:@stdlib/utils/any-own-by}
85+
*/
86+
setReadOnly( utils, 'anyOwnBy', require( './../any-own-by' ) );
87+
7088
/**
7189
* @name append
7290
* @memberof utils
@@ -1210,6 +1228,15 @@ setReadOnly( utils, 'noneBy', require( './../none-by' ) );
12101228
*/
12111229
setReadOnly( utils, 'noneByRight', require( './../none-by-right' ) );
12121230

1231+
/**
1232+
* @name noneOwnBy
1233+
* @memberof utils
1234+
* @readonly
1235+
* @type {Function}
1236+
* @see {@link module:@stdlib/utils/none-own-by}
1237+
*/
1238+
setReadOnly( utils, 'noneOwnBy', require( './../none-own-by' ) );
1239+
12131240
/**
12141241
* @name nonEnumerableProperties
12151242
* @memberof utils
@@ -1363,6 +1390,15 @@ setReadOnly( utils, 'parallel', require( './../parallel' ) );
13631390
*/
13641391
setReadOnly( utils, 'parseJSON', require( './../parse-json' ) );
13651392

1393+
/**
1394+
* @name parseNDJSON
1395+
* @memberof utils
1396+
* @readonly
1397+
* @type {Function}
1398+
* @see {@link module:@stdlib/utils/parse-ndjson}
1399+
*/
1400+
setReadOnly( utils, 'parseNDJSON', require( './../parse-ndjson' ) );
1401+
13661402
/**
13671403
* @name pick
13681404
* @memberof utils
@@ -1660,6 +1696,15 @@ setReadOnly( utils, 'someBy', require( './../some-by' ) );
16601696
*/
16611697
setReadOnly( utils, 'someByRight', require( './../some-by-right' ) );
16621698

1699+
/**
1700+
* @name someOwnBy
1701+
* @memberof utils
1702+
* @readonly
1703+
* @type {Function}
1704+
* @see {@link module:@stdlib/utils/some-own-by}
1705+
*/
1706+
setReadOnly( utils, 'someOwnBy', require( './../some-own-by' ) );
1707+
16631708
/**
16641709
* @name tabulate
16651710
* @memberof utils

map2-right/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* var x = array( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ], opts );
4747
* var y = array( [ [ 1, 1, 1 ], [ 1, 1, 1 ] ], opts );
4848
*
49-
* var out = map2Right( x, y. naryFunction( add, 2 ) );
49+
* var out = map2Right( x, y, naryFunction( add, 2 ) );
5050
* // returns <ndarray>
5151
*
5252
* var data = out.data;

0 commit comments

Comments
 (0)