Skip to content

Commit baea46d

Browse files
authored
Update accessors.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent 8a8ffcd commit baea46d

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
5151
* // returns 8.0
5252
*/
5353
function nanmaxBy( N, x, strideX, offsetX, clbk, thisArg ) {
54-
var xbuf;
54+
var xbuf;
5555
var get;
5656
var max;
5757
var ix;
@@ -95,10 +95,10 @@ function nanmaxBy( N, x, strideX, offsetX, clbk, thisArg ) {
9595
max = v;
9696
}
9797
}
98-
return max;
98+
return max;
9999
}
100100

101101

102102
// EXPORTS //
103103

104-
module.exports = nanmaxBy;
104+
module.exports = nanmaxBy;

0 commit comments

Comments
 (0)