Skip to content

Commit 0cc8e04

Browse files
committed
Auto-generated commit
1 parent 1716fc8 commit 0cc8e04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function createBenchmark( fcn, len ) {
7373
for ( i = 0; i < b.iterations; i++ ) {
7474
x[ len-1 ] += 1;
7575
bool = fcn( x );
76-
if ( !isBoolean( bool ) ) {
76+
if ( typeof bool !== 'boolean' ) {
7777
b.fail( 'should return a boolean' );
7878
}
7979
}

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
// MODULES //
4343

44-
var typedarrayfcn = require( './main.js' );
44+
var main = require( './main.js' );
4545

4646

4747
// EXPORTS //
4848

49-
module.exports = typedarrayfcn;
49+
module.exports = main;

0 commit comments

Comments
 (0)