Skip to content

Commit 61d9515

Browse files
committed
Auto-generated commit
1 parent a915544 commit 61d9515

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/.keepalive

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

benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ bench( pkg, function benchmark( b ) {
7070
b.tic();
7171
for ( i = 0; i < b.iterations; i++ ) {
7272
bool = isTypedArray( values[ i%values.length ] );
73-
if ( !isBoolean( bool ) ) {
73+
if ( typeof bool !== 'boolean' ) {
7474
b.fail( 'should return a boolean' );
7575
}
7676
}
@@ -102,7 +102,7 @@ bench( pkg+'::true', function benchmark( b ) {
102102
b.tic();
103103
for ( i = 0; i < b.iterations; i++ ) {
104104
bool = isTypedArray( values[ i%values.length ] );
105-
if ( !isBoolean( bool ) ) {
105+
if ( typeof bool !== 'boolean' ) {
106106
b.fail( 'should return a boolean' );
107107
}
108108
}

lib/index.js

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

3434
// MODULES //
3535

36-
var isTypedArray = require( './main.js' );
36+
var main = require( './main.js' );
3737

3838

3939
// EXPORTS //
4040

41-
module.exports = isTypedArray;
41+
module.exports = main;

0 commit comments

Comments
 (0)