Skip to content

Commit 259909e

Browse files
committed
Auto-generated commit
1 parent bfd3498 commit 259909e

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
@@ -41,7 +41,7 @@ bench( pkg, function benchmark( b ) {
4141
obj = {};
4242
obj[ key ] = i;
4343
bool = isMethodIn( obj, key );
44-
if ( !isBoolean( bool ) ) {
44+
if ( typeof bool !== 'boolean' ) {
4545
b.fail( 'should return a boolean' );
4646
}
4747
}
@@ -65,7 +65,7 @@ bench( pkg+'::built-in', function benchmark( b ) {
6565
obj = {};
6666
obj[ key ] = i;
6767
bool = ( key in obj ) && typeof obj[ key ] === 'function';
68-
if ( !isBoolean( bool ) ) {
68+
if ( typeof bool !== 'boolean' ) {
6969
b.fail( 'should return a boolean' );
7070
}
7171
}

lib/index.js

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

4040
// MODULES //
4141

42-
var isMethodIn = require( './main.js' );
42+
var main = require( './main.js' );
4343

4444

4545
// EXPORTS //
4646

47-
module.exports = isMethodIn;
47+
module.exports = main;

0 commit comments

Comments
 (0)