Skip to content

Commit 1a09e09

Browse files
committed
Auto-generated commit
1 parent 924244f commit 1a09e09

5 files changed

Lines changed: 23 additions & 5 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-05-06)
7+
## Unreleased (2026-05-11)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`91f9e66`](https://github.com/stdlib-js/stdlib/commit/91f9e662810fe97879caefabb9fdd92c3ee7d3ec) - add `toFilled` to namespace
14+
- [`e007cc9`](https://github.com/stdlib-js/stdlib/commit/e007cc9a39f4a47b7de07c3b13b147f9c8a454a4) - add `array/base/to-filled` [(#11954)](https://github.com/stdlib-js/stdlib/pull/11954)
1315
- [`1596184`](https://github.com/stdlib-js/stdlib/commit/159618429a64de56dbe457f7bb901a117d5e9af2) - update `array/base` TypeScript declarations [(#11213)](https://github.com/stdlib-js/stdlib/pull/11213)
1416
- [`9165bd6`](https://github.com/stdlib-js/stdlib/commit/9165bd6bd22746c8e69c14e75fd931485515a194) - add `falses` to namespace
1517
- [`836f561`](https://github.com/stdlib-js/stdlib/commit/836f5610785c2b1eb8efd5d5234fec349dac8f1d) - add `array/base/falses`
@@ -38,6 +40,9 @@ This release closes the following issue:
3840

3941
<details>
4042

43+
- [`91f9e66`](https://github.com/stdlib-js/stdlib/commit/91f9e662810fe97879caefabb9fdd92c3ee7d3ec) - **feat:** add `toFilled` to namespace _(by Athan Reines)_
44+
- [`e007cc9`](https://github.com/stdlib-js/stdlib/commit/e007cc9a39f4a47b7de07c3b13b147f9c8a454a4) - **feat:** add `array/base/to-filled` [(#11954)](https://github.com/stdlib-js/stdlib/pull/11954) _(by Muhammad Haris, Athan Reines)_
45+
- [`02f0b0f`](https://github.com/stdlib-js/stdlib/commit/02f0b0fc4c6b8913d3bb30a33de136627757843d) - **docs:** fix `Complex64Array` import in `array/base/take` [(#12066)](https://github.com/stdlib-js/stdlib/pull/12066) _(by Karan Anand)_
4146
- [`bca55a9`](https://github.com/stdlib-js/stdlib/commit/bca55a9363c921a4a04dd3b2c38a518cb10cac11) - **docs:** fix `arraylike2object` example in `array/base` namespace declarations [(#11971)](https://github.com/stdlib-js/stdlib/pull/11971) _(by Karan Anand)_
4247
- [`923db7f`](https://github.com/stdlib-js/stdlib/commit/923db7f63656e408cf390029bd7985b4e736b518) - **docs:** improve doctests for complex number instances in `array/base/accessors` [(#11970)](https://github.com/stdlib-js/stdlib/pull/11970) _(by Karan Anand)_
4348
- [`8decd39`](https://github.com/stdlib-js/stdlib/commit/8decd399a17fed37bad4642b0a8efc4b2cb7a5a8) - **docs:** fix accessor example arguments in `array/base/arraylike2object` [(#11969)](https://github.com/stdlib-js/stdlib/pull/11969) _(by Karan Anand)_
@@ -72,11 +77,12 @@ This release closes the following issue:
7277

7378
### Contributors
7479

75-
A total of 7 people contributed to this release. Thank you to the following contributors:
80+
A total of 8 people contributed to this release. Thank you to the following contributors:
7681

7782
- Aniket Sonawane
7883
- Athan Reines
7984
- Karan Anand
85+
- Muhammad Haris
8086
- Philipp Burckhardt
8187
- Rohit R Bhat
8288
- Siddhartha Mondal

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1962,6 +1962,15 @@ setReadOnly( ns, 'toAccessorArray', require( '@stdlib/array-base-to-accessor-arr
19621962
*/
19631963
setReadOnly( ns, 'toDeduped', require( '@stdlib/array-base-to-deduped' ) );
19641964

1965+
/**
1966+
* @name toFilled
1967+
* @memberof ns
1968+
* @readonly
1969+
* @type {Function}
1970+
* @see {@link module:@stdlib/array/base/to-filled}
1971+
*/
1972+
setReadOnly( ns, 'toFilled', require( '@stdlib/array-base-to-filled' ) );
1973+
19651974
/**
19661975
* @name toInsertedAt
19671976
* @memberof ns

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@
250250
"@stdlib/array-base-ternary5d": "^0.2.3",
251251
"@stdlib/array-base-to-accessor-array": "^0.2.3",
252252
"@stdlib/array-base-to-deduped": "^0.2.3",
253+
"@stdlib/array-base-to-filled": "github:stdlib-js/array-base-to-filled#main",
253254
"@stdlib/array-base-to-inserted-at": "^0.1.1",
254255
"@stdlib/array-base-to-reversed": "^0.2.3",
255256
"@stdlib/array-base-trues": "github:stdlib-js/array-base-trues#main",
@@ -362,6 +363,7 @@
362363
"@stdlib/assert-is-nonnegative-integer-array": "^0.2.3",
363364
"@stdlib/assert-is-plain-object": "^0.2.3",
364365
"@stdlib/assert-is-positive-integer": "^0.2.3",
366+
"@stdlib/assert-is-same-accessor-array": "^0.1.1",
365367
"@stdlib/assert-is-same-complex128": "^0.2.3",
366368
"@stdlib/assert-is-same-complex128array": "^0.2.3",
367369
"@stdlib/assert-is-same-complex64": "^0.2.3",
@@ -385,6 +387,7 @@
385387
"@stdlib/complex-float64-imag": "^0.1.2",
386388
"@stdlib/complex-float64-real": "^0.1.2",
387389
"@stdlib/console-log": "^0.2.3",
390+
"@stdlib/console-log-each-map": "^0.1.1",
388391
"@stdlib/constants-float32-eps": "^0.2.3",
389392
"@stdlib/constants-float64-eps": "^0.2.3",
390393
"@stdlib/constants-int16-max": "^0.2.3",

0 commit comments

Comments
 (0)