Skip to content

Commit d5ae51f

Browse files
committed
Auto-generated commit
1 parent 2967df5 commit d5ae51f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function createBenchmark( fcn, len, primitives ) {
7979
// Note: we are testing the worst case scenario where a function must scan the entire array before finding a failing value.
8080
x[ len-1 ] = i;
8181
bool = fcn( x );
82-
if ( !isBoolean( bool ) ) {
82+
if ( typeof bool !== 'boolean' ) {
8383
b.fail( 'should return a boolean' );
8484
}
8585
}

0 commit comments

Comments
 (0)