You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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: typeoffalses;
2421
+
2408
2422
/**
2409
2423
* Returns a shallow copy of a portion of an array.
2410
2424
*
@@ -5713,6 +5727,18 @@ interface Namespace {
5713
5727
*/
5714
5728
toReversed: typeoftoReversed;
5715
5729
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: typeoftrues;
5741
+
5716
5742
/**
5717
5743
* 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.
0 commit comments