Skip to content

Commit 562bd55

Browse files
committed
Auto-generated commit
1 parent 93ad044 commit 562bd55

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`e05819a`](https://github.com/stdlib-js/stdlib/commit/e05819abfe0fbf982469653a85add02159e8b122) - add `someBy` to namespace
1314
- [`350203f`](https://github.com/stdlib-js/stdlib/commit/350203f7cb6419700b7b07e558b677fb177828f8) - add `ndarray/base/some-by` [(#7087)](https://github.com/stdlib-js/stdlib/pull/7087)
1415
- [`b933a8d`](https://github.com/stdlib-js/stdlib/commit/b933a8d4d5176d89e9efe541a65431275011a477) - add `countIf` to namespace
1516
- [`4e85371`](https://github.com/stdlib-js/stdlib/commit/4e853712ccdbcce3faf40291446fee3f9cfb3d7f) - add `ndarray/count-if`
@@ -425,6 +426,7 @@ A total of 17 issues were closed in this release:
425426

426427
<details>
427428

429+
- [`e05819a`](https://github.com/stdlib-js/stdlib/commit/e05819abfe0fbf982469653a85add02159e8b122) - **feat:** add `someBy` to namespace _(by Athan Reines)_
428430
- [`350203f`](https://github.com/stdlib-js/stdlib/commit/350203f7cb6419700b7b07e558b677fb177828f8) - **feat:** add `ndarray/base/some-by` [(#7087)](https://github.com/stdlib-js/stdlib/pull/7087) _(by Muhammad Haris, Athan Reines)_
429431
- [`b933a8d`](https://github.com/stdlib-js/stdlib/commit/b933a8d4d5176d89e9efe541a65431275011a477) - **feat:** add `countIf` to namespace _(by Athan Reines)_
430432
- [`be08665`](https://github.com/stdlib-js/stdlib/commit/be08665312b7e55f04365176a4f6ea75aad8c70d) - **style:** enable lint rule _(by Athan Reines)_

base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,15 @@ setReadOnly( ns, 'sliceFrom', require( './../../base/slice-from' ) );
895895
*/
896896
setReadOnly( ns, 'sliceTo', require( './../../base/slice-to' ) );
897897

898+
/**
899+
* @name someBy
900+
* @memberof ns
901+
* @readonly
902+
* @type {Function}
903+
* @see {@link module:@stdlib/ndarray/base/some-by}
904+
*/
905+
setReadOnly( ns, 'someBy', require( './../../base/some-by' ) );
906+
898907
/**
899908
* @name spreadDimensions
900909
* @memberof ns

0 commit comments

Comments
 (0)