Skip to content

Commit

Permalink
feat: add flatten3dBy to namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jul 27, 2023
1 parent 8566129 commit c1eb700
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/array/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,15 @@ setReadOnly( ns, 'flatten2dBy', require( '@stdlib/array/base/flatten2d-by' ) );
*/
setReadOnly( ns, 'flatten3d', require( '@stdlib/array/base/flatten3d' ) );

/**
* @name flatten3dBy
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/array/base/flatten3d-by}
*/
setReadOnly( ns, 'flatten3dBy', require( '@stdlib/array/base/flatten3d-by' ) );

/**
* @name flatten4d
* @memberof ns
Expand Down

1 comment on commit c1eb700

@stdlib-bot
Copy link
Contributor

@stdlib-bot stdlib-bot commented on c1eb700 Jul 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/flatten2d-by 211/275 3/3 0/2 211/275
array/base/flatten3d-by 296/296 21/21 2/2 296/296
array/base/flatten3d 260/260 20/20 2/2 260/260
array/base 339/339 1/1 0/0 339/339

Please sign in to comment.