Skip to content

Commit 27e92b1

Browse files
authored
Update nanmax_by.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent baea46d commit 27e92b1

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
// MODULES //
2222

23-
var ndarray = require( './ndarray.js' );
2423
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
24+
var ndarray = require( './ndarray.js' );
2525

2626

2727
// MAIN //
@@ -47,7 +47,7 @@ var stride2offset = require( '@stdlib/strided/base/stride2offset' );
4747
* // returns 8.0
4848
*/
4949
function nanmaxBy( N, x, strideX, clbk, thisArg ) {
50-
return ndarray( N, x, strideX, stride2offset( N, strideX ), clbk , thisArg );
50+
return ndarray( N, x, strideX, stride2offset( N, strideX ), clbk, thisArg );
5151
}
5252

5353

0 commit comments

Comments
 (0)