Skip to content

Commit 2e50eee

Browse files
committed
Auto-generated commit
1 parent deafda2 commit 2e50eee

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

0 commit comments

Comments
 (0)