Skip to content

Commit c3a2c00

Browse files
committed
Auto-generated commit
1 parent 41eb6b5 commit c3a2c00

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
@@ -64,7 +64,7 @@ bench( pkg, function benchmark( b ) {
6464
b.tic();
6565
for ( i = 0; i < b.iterations; i++ ) {
6666
bool = isArrowFunction( values[ i%values.length ] );
67-
if ( !isBoolean( bool ) ) {
67+
if ( typeof bool !== 'boolean' ) {
6868
b.fail( 'should return a boolean' );
6969
}
7070
}

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 isArrowFunction = require( './main.js' );
44+
var main = require( './main.js' );
4545

4646

4747
// EXPORTS //
4848

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

0 commit comments

Comments
 (0)