Skip to content

Commit e0e8bb3

Browse files
authored
Update ndarray.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent e719cfd commit e0e8bb3

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/nanmax-by/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/nanmax-by/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function nanmaxBy( N, x, strideX, offsetX, clbk, thisArg ) {
6060
return NaN;
6161
}
6262
o = arraylike2object( x );
63-
if( o.accessorProtocol ) {
63+
if ( o.accessorProtocol ) {
6464
return accessors( N, o, strideX, offsetX, clbk, thisArg );
6565
}
6666
if ( N === 1 || strideX === 0 ) {

0 commit comments

Comments
 (0)