Skip to content

Commit c1bd9e0

Browse files
committed
Auto-generated commit
1 parent b5d3062 commit c1bd9e0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
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
@@ -59,7 +59,7 @@ bench( pkg, function benchmark( b ) {
5959
b.tic();
6060
for ( i = 0; i < b.iterations; i++ ) {
6161
bool = isArrayBuffer( values[ i%values.length ] );
62-
if ( !isBoolean( bool ) ) {
62+
if ( typeof bool !== 'boolean' ) {
6363
b.fail( 'should return a boolean' );
6464
}
6565
}

lib/index.js

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

3737
// MODULES //
3838

39-
var isArrayBuffer = require( './main.js' );
39+
var main = require( './main.js' );
4040

4141

4242
// EXPORTS //
4343

44-
module.exports = isArrayBuffer;
44+
module.exports = main;

0 commit comments

Comments
 (0)