We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f4c10 commit c77417dCopy full SHA for c77417d
1 file changed
lib/node_modules/@stdlib/ndarray/fancy/test/test.instance.tostring.js
@@ -175,7 +175,10 @@ tape( 'a FancyArray constructor returns an instance which has a custom `toString
175
var arr;
176
177
dtype = 'generic';
178
- buffer = new Array( 1e4 );
+ buffer = [];
179
+ for ( var i = 0; i < 1e4; i++ ) {
180
+ buffer.push( 0 );
181
+ }
182
shape = [ buffer.length ];
183
order = 'row-major';
184
strides = [ 1 ];
0 commit comments