Skip to content

Commit f585eb8

Browse files
committed
Auto-generated commit
1 parent bc4af60 commit f585eb8

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+
- [`e7a30dc`](https://github.com/stdlib-js/stdlib/commit/e7a30dcc468a1db97d78ae16cea85090a13d5fac) - add `broadcastScalar` to namespace
1314
- [`6bc5ee5`](https://github.com/stdlib-js/stdlib/commit/6bc5ee550629c3aaae7687630c315d607c185ba9) - add `ndarray/broadcast-scalar` [(#9916)](https://github.com/stdlib-js/stdlib/pull/9916)
1415
- [`e8b00ab`](https://github.com/stdlib-js/stdlib/commit/e8b00abfb7e1a012c9df982553c6ede3f6b261d9) - add `unshift` to namespace
1516
- [`d703ebd`](https://github.com/stdlib-js/stdlib/commit/d703ebd30fb8f62c7e3718074648bb901de0c267) - add `spreadDimensions` to namespace
@@ -751,6 +752,7 @@ A total of 43 issues were closed in this release:
751752

752753
<details>
753754

755+
- [`e7a30dc`](https://github.com/stdlib-js/stdlib/commit/e7a30dcc468a1db97d78ae16cea85090a13d5fac) - **feat:** add `broadcastScalar` to namespace _(by Athan Reines)_
754756
- [`6bc5ee5`](https://github.com/stdlib-js/stdlib/commit/6bc5ee550629c3aaae7687630c315d607c185ba9) - **feat:** add `ndarray/broadcast-scalar` [(#9916)](https://github.com/stdlib-js/stdlib/pull/9916) _(by Muhammad Haris, Athan Reines)_
755757
- [`e8b00ab`](https://github.com/stdlib-js/stdlib/commit/e8b00abfb7e1a012c9df982553c6ede3f6b261d9) - **feat:** add `unshift` to namespace _(by Athan Reines)_
756758
- [`d703ebd`](https://github.com/stdlib-js/stdlib/commit/d703ebd30fb8f62c7e3718074648bb901de0c267) - **feat:** add `spreadDimensions` to namespace _(by Athan Reines)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,15 @@ setReadOnly( ns, 'broadcastArray', require( './../broadcast-array' ) );
9999
*/
100100
setReadOnly( ns, 'broadcastArrays', require( './../broadcast-arrays' ) );
101101

102+
/**
103+
* @name broadcastScalar
104+
* @memberof ns
105+
* @readonly
106+
* @type {Function}
107+
* @see {@link module:@stdlib/ndarray/broadcast-scalar}
108+
*/
109+
setReadOnly( ns, 'broadcastScalar', require( './../broadcast-scalar' ) );
110+
102111
/**
103112
* @name castingModes
104113
* @memberof ns

0 commit comments

Comments
 (0)