Skip to content

Commit 7146982

Browse files
committed
Auto-generated commit
1 parent 8a9a23f commit 7146982

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/.keepalive

-1
This file was deleted.

benchmark/benchmark.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ bench( pkg, function benchmark( b ) {
5151
b.tic();
5252
for ( i = 0; i < b.iterations; i++ ) {
5353
bool = isTypedArrayLength( values[ i % values.length ] );
54-
if ( !isBoolean( bool ) ) {
54+
if ( typeof bool !== 'boolean' ) {
5555
b.fail( 'should return a boolean' );
5656
}
5757
}

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
// MODULES //
4343

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

4646

4747
// EXPORTS //
4848

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

0 commit comments

Comments
 (0)