We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f6acb commit 4abe551Copy full SHA for 4abe551
lib/node_modules/@stdlib/array/base/count-if/README.md
@@ -48,7 +48,7 @@ Counts the number of elements in an array that satisfy the provided testing func
48
var x = [ 0, 1, 0, 1, 2 ];
49
50
function predicate( val ) {
51
- return ( val % 2 === 0 )
+ return ( val % 2 === 0 );
52
}
53
54
var out = countIf( x, predicate );
0 commit comments