File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
lib/node_modules/@stdlib/array/base
count-same-value-zero/lib Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -196,11 +196,11 @@ function boolean( x, value ) {
196
196
* // returns 2
197
197
*/
198
198
function countSameValueZero ( x , value ) {
199
- if ( isAccessorArray ( x , value ) ) {
200
- if ( isComplexTypedArray ( x , value ) ) {
199
+ if ( isAccessorArray ( x ) ) {
200
+ if ( isComplexTypedArray ( x ) ) {
201
201
return complex ( x , value ) ;
202
202
}
203
- if ( isBooleanArray ( x , value ) ) {
203
+ if ( isBooleanArray ( x ) ) {
204
204
return boolean ( x , value ) ;
205
205
}
206
206
return accessors ( x , value ) ;
Original file line number Diff line number Diff line change @@ -196,11 +196,11 @@ function boolean( x, value ) {
196
196
* // returns 3
197
197
*/
198
198
function countSameValue ( x , value ) {
199
- if ( isAccessorArray ( x , value ) ) {
200
- if ( isComplexTypedArray ( x , value ) ) {
199
+ if ( isAccessorArray ( x ) ) {
200
+ if ( isComplexTypedArray ( x ) ) {
201
201
return complex ( x , value ) ;
202
202
}
203
- if ( isBooleanArray ( x , value ) ) {
203
+ if ( isBooleanArray ( x ) ) {
204
204
return boolean ( x , value ) ;
205
205
}
206
206
return accessors ( x , value ) ;
You can’t perform that action at this time.
0 commit comments