Skip to content

Commit 36d9017

Browse files
committed
Auto-generated commit
1 parent eb84140 commit 36d9017

2 files changed

Lines changed: 28 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+
- [`1596184`](https://github.com/stdlib-js/stdlib/commit/159618429a64de56dbe457f7bb901a117d5e9af2) - update `array/base` TypeScript declarations [(#11213)](https://github.com/stdlib-js/stdlib/pull/11213)
1314
- [`33b4e79`](https://github.com/stdlib-js/stdlib/commit/33b4e79ad1e9cba8605ed44989d02f9a46b79663) - add `nulls` to namespace
1415
- [`419efe1`](https://github.com/stdlib-js/stdlib/commit/419efe14ee9dfc8224b419864f9314614f27786b) - add `array/nulls`
1516
- [`9165bd6`](https://github.com/stdlib-js/stdlib/commit/9165bd6bd22746c8e69c14e75fd931485515a194) - add `falses` to namespace
@@ -266,6 +267,7 @@ A total of 38 issues were closed in this release:
266267

267268
<details>
268269

270+
- [`1596184`](https://github.com/stdlib-js/stdlib/commit/159618429a64de56dbe457f7bb901a117d5e9af2) - **feat:** update `array/base` TypeScript declarations [(#11213)](https://github.com/stdlib-js/stdlib/pull/11213) _(by stdlib-bot)_
269271
- [`5e93594`](https://github.com/stdlib-js/stdlib/commit/5e93594dd241e229cc3605b53dfa4290168526fc) - **docs:** update namespace table of contents [(#11214)](https://github.com/stdlib-js/stdlib/pull/11214) _(by stdlib-bot)_
270272
- [`33b4e79`](https://github.com/stdlib-js/stdlib/commit/33b4e79ad1e9cba8605ed44989d02f9a46b79663) - **feat:** add `nulls` to namespace _(by Athan Reines)_
271273
- [`419efe1`](https://github.com/stdlib-js/stdlib/commit/419efe14ee9dfc8224b419864f9314614f27786b) - **feat:** add `array/nulls` _(by Athan Reines)_

base/docs/types/index.d.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ import entries2views = require( './../../../base/entries2views' );
9999
import every = require( './../../../base/every' );
100100
import everyBy = require( './../../../base/every-by' );
101101
import everyByRight = require( './../../../base/every-by-right' );
102+
import falses = require( './../../../base/falses' );
102103
import fancySlice = require( './../../../base/fancy-slice' );
103104
import fancySliceAssign = require( './../../../base/fancy-slice-assign' );
104105
import fill = require( './../../../base/fill' );
@@ -235,6 +236,7 @@ import toAccessorArray = require( './../../../base/to-accessor-array' );
235236
import toDeduped = require( './../../../base/to-deduped' );
236237
import toInsertedAt = require( './../../../base/to-inserted-at' );
237238
import toReversed = require( './../../../base/to-reversed' );
239+
import trues = require( './../../../base/trues' );
238240
import unary2d = require( './../../../base/unary2d' );
239241
import unary2dBy = require( './../../../base/unary2d-by' );
240242
import unary3d = require( './../../../base/unary3d' );
@@ -2405,6 +2407,18 @@ interface Namespace {
24052407
*/
24062408
everyByRight: typeof everyByRight;
24072409

2410+
/**
2411+
* Returns a "generic" array filled with `false` values.
2412+
*
2413+
* @param len - array length
2414+
* @returns output array
2415+
*
2416+
* @example
2417+
* var out = ns.falses( 3 );
2418+
* // returns [ false, false, false ]
2419+
*/
2420+
falses: typeof falses;
2421+
24082422
/**
24092423
* Returns a shallow copy of a portion of an array.
24102424
*
@@ -5713,6 +5727,18 @@ interface Namespace {
57135727
*/
57145728
toReversed: typeof toReversed;
57155729

5730+
/**
5731+
* Returns a "generic" array filled with `true` values.
5732+
*
5733+
* @param len - array length
5734+
* @returns output array
5735+
*
5736+
* @example
5737+
* var out = ns.trues( 3 );
5738+
* // returns [ true, true, true ]
5739+
*/
5740+
trues: typeof trues;
5741+
57165742
/**
57175743
* Applies a unary callback to elements in a two-dimensional nested input array and assigns results to elements in a two-dimensional nested output array.
57185744
*

0 commit comments

Comments
 (0)