Skip to content

Commit dd21e83

Browse files
committed
Auto-generated commit
1 parent ce54b36 commit dd21e83

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

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+
- [`02c34bc`](https://github.com/stdlib-js/stdlib/commit/02c34bcc0cdd0ebba2f0fc8c311534aebf1ede2a) - add `everyBy` to namespace
1314
- [`37969ad`](https://github.com/stdlib-js/stdlib/commit/37969adc28a67964a680c4205775d12383d02938) - add `ndarray/every-by` [(#11012)](https://github.com/stdlib-js/stdlib/pull/11012)
1415
- [`c412a6e`](https://github.com/stdlib-js/stdlib/commit/c412a6efedf30e63a34d2ac7850bd69fc89e6f48) - add `toFlippedud` to namespace
1516
- [`12cbc6b`](https://github.com/stdlib-js/stdlib/commit/12cbc6bfe422012e85e51affa6411c6779251d5e) - add `toFlippedlr` to namespace
@@ -789,6 +790,7 @@ A total of 44 issues were closed in this release:
789790

790791
<details>
791792

793+
- [`02c34bc`](https://github.com/stdlib-js/stdlib/commit/02c34bcc0cdd0ebba2f0fc8c311534aebf1ede2a) - **feat:** add `everyBy` to namespace _(by Athan Reines)_
792794
- [`37969ad`](https://github.com/stdlib-js/stdlib/commit/37969adc28a67964a680c4205775d12383d02938) - **feat:** add `ndarray/every-by` [(#11012)](https://github.com/stdlib-js/stdlib/pull/11012) _(by Muhammad Haris)_
793795
- [`c412a6e`](https://github.com/stdlib-js/stdlib/commit/c412a6efedf30e63a34d2ac7850bd69fc89e6f48) - **feat:** add `toFlippedud` to namespace _(by Athan Reines)_
794796
- [`12cbc6b`](https://github.com/stdlib-js/stdlib/commit/12cbc6bfe422012e85e51affa6411c6779251d5e) - **feat:** add `toFlippedlr` to namespace _(by Athan Reines)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,15 @@ setReadOnly( ns, 'emptyLike', require( './../empty-like' ) );
261261
*/
262262
setReadOnly( ns, 'every', require( './../every' ) );
263263

264+
/**
265+
* @name everyBy
266+
* @memberof ns
267+
* @readonly
268+
* @type {Function}
269+
* @see {@link module:@stdlib/ndarray/every-by}
270+
*/
271+
setReadOnly( ns, 'everyBy', require( './../every-by' ) );
272+
264273
/**
265274
* @name FancyArray
266275
* @memberof ns

0 commit comments

Comments
 (0)