Skip to content

Commit a5ce155

Browse files
committed
fix: add missing argument
1 parent c539bd1 commit a5ce155

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/prepend-singleton-dimensions/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/prepend-singleton-dimensions/lib/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ function prependSingletonDimensions( x, n ) { // eslint-disable-line id-length
7373
var N;
7474
var i;
7575

76-
sh = getShape( x );
77-
st = getStrides( x );
76+
sh = getShape( x, false );
77+
st = getStrides( x, false );
7878
N = sh.length;
7979

8080
strides = [];

0 commit comments

Comments
 (0)