Skip to content

Commit

Permalink
Merge branch 'count-same-value' of https://github.com/jaysukh-409/stdlib
Browse files Browse the repository at this point in the history
 into pr/Jaysukh-409/2473
  • Loading branch information
kgryte committed Jun 29, 2024
2 parents 0632ca5 + 413a63f commit 6c85ef4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function boolean( x, value ) {

n = 0;
for ( i = 0; i < view.length; i++ ) {
if ( isSameValue( view[ i ], value ) ) {
if ( view[ i ] === value ) {
n += 1;
}
}
Expand Down

0 comments on commit 6c85ef4

Please sign in to comment.