Skip to content

Commit dc83afe

Browse files
committed
Auto-generated commit
1 parent 439b64d commit dc83afe

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
@@ -71,7 +71,7 @@ function createBenchmark( fcn, len, primitives ) {
7171
// Note: we are testing the worst case scenario where a function must scan the entire array before finding a failing value.
7272
x[ len-1 ] = fromCodePoint( i % 126 );
7373
bool = fcn( x );
74-
if ( !isBoolean( bool ) ) {
74+
if ( typeof bool !== 'boolean' ) {
7575
b.fail( 'should return a boolean' );
7676
}
7777
}

0 commit comments

Comments
 (0)