Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 7, 2024
1 parent 1f5b0a1 commit d7f7410
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

22 changes: 11 additions & 11 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ type Callback<T, V> = Nullary<T, V> | Unary<T, V>;
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 3 ], constantFunction( 1.0 ) );
* // returns [ 1.0, 1.0, 1.0 ]
Expand All @@ -169,7 +169,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape1D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ 1.0, 1.0, 1.0 ] ]
Expand All @@ -184,7 +184,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape2D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ 1.0, 1.0, 1.0 ] ] ]
Expand All @@ -200,7 +200,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape3D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ]
Expand All @@ -216,7 +216,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape4D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ]
Expand All @@ -232,7 +232,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape5D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ]
Expand All @@ -248,7 +248,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape6D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ]
Expand All @@ -264,7 +264,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape7D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ]
Expand All @@ -280,7 +280,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape8D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ]
Expand All @@ -296,7 +296,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape9D, clbk: Cal
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ]
Expand All @@ -312,7 +312,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape10D, clbk: Ca
* @returns output array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) );
* // returns [ [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ]
Expand Down

0 comments on commit d7f7410

Please sign in to comment.