File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -850,6 +850,7 @@ A total of 49 issues were closed in this release:
850850
851851<details>
852852
853+ - [`07bcff6`](https://github.com/stdlib-js/stdlib/commit/07bcff64aac9d1c61b327b8986bbf34e1643b0ba) - **refactor:** import method directly _(by Athan Reines)_
853854- [`c4ace9d`](https://github.com/stdlib-js/stdlib/commit/c4ace9d015730f6552a6994c34b5ea8d5480e9e5) - **refactor:** create read-only views _(by Athan Reines)_
854855- [`414d61b`](https://github.com/stdlib-js/stdlib/commit/414d61b8adf854cfa4582bd9659c760b03bc40a7) - **feat:** add `colcat` to namespace _(by Athan Reines)_
855856- [`648e90d`](https://github.com/stdlib-js/stdlib/commit/648e90d07d66f130eca610f79242ceea902f9e10) - **feat:** add `ndarray/colcat` [(#11527)](https://github.com/stdlib-js/stdlib/pull/11527) _(by Muhammad Haris)_
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ var ndarraylike2ndarray = require( './../../base/ndarraylike2ndarray' );
2626var expandDimensions = require ( './../../base/expand-dimensions' ) ;
2727var ndims = require ( './../../base/ndims' ) ;
2828var getShape = require ( './../../base/shape' ) ;
29- var concat = require ( './../../concat' ) ;
29+ var concat = require ( './../../concat' ) . assign ;
3030var format = require ( '@stdlib/string/format' ) ;
3131
3232
@@ -109,7 +109,7 @@ function assign( arrays, out ) {
109109 }
110110 arrs . push ( arr ) ;
111111 }
112- concat . assign ( arrs , out , {
112+ concat ( arrs , out , {
113113 'dim' : - 1
114114 } ) ;
115115 return out ;
You can’t perform that action at this time.
0 commit comments