We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb160c4 commit 92aa7a3Copy full SHA for 92aa7a3
lib/node_modules/@stdlib/stats/incr/nanme/test/test.js
@@ -79,7 +79,7 @@ tape( 'the accumulator function incrementally computes the mean error', function
79
y = data[ i ][ 1 ];
80
if ( isnan( x ) === false && isnan( y ) === false ) {
81
sum += ( y-x );
82
- count++;
+ count += 1;
83
}
84
expected = count>0 ? sum / count : null;
85
actual = acc( x, y );
0 commit comments