Skip to content

Commit 2d6a0ec

Browse files
committed
Auto-generated commit
1 parent 20abc92 commit 2d6a0ec

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
@@ -69,7 +69,7 @@ bench( pkg, function benchmark( b ) {
6969
b.tic();
7070
for ( i = 0; i < b.iterations; i++ ) {
7171
bool = isSharedArrayBuffer( values[ i%values.length ] );
72-
if ( !isBoolean( bool ) ) {
72+
if ( typeof bool !== 'boolean' ) {
7373
b.fail( 'should return a boolean' );
7474
}
7575
}

lib/index.js

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

4141
// MODULES //
4242

43-
var isSharedArrayBuffer = require( './main.js' );
43+
var main = require( './main.js' );
4444

4545

4646
// EXPORTS //
4747

48-
module.exports = isSharedArrayBuffer;
48+
module.exports = main;

0 commit comments

Comments
 (0)