Skip to content

Commit e4b2e64

Browse files
committed
check
1 parent 64e372b commit e4b2e64

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/incr/nancv/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/nancv/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
5151
*/
5252
function incrnancv() {
5353
var cv = incrcv();
54-
55-
return function accumulator( x ) {
54+
function accumulator( x ) {
5655
if ( arguments.length === 0 ) {
5756
return cv();
5857
}
@@ -61,6 +60,7 @@ function incrnancv() {
6160
}
6261
return cv( x );
6362
};
63+
return accumulator;
6464
}
6565

6666

0 commit comments

Comments
 (0)