Skip to content

Commit 84d758a

Browse files
committed
Auto-generated commit
1 parent 3fa5cfc commit 84d758a

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
@@ -53,7 +53,7 @@ bench( pkg, function benchmark( b ) {
5353
b.tic();
5454
for ( i = 0; i < b.iterations; i++ ) {
5555
bool = isRegExp( values[ i%values.length ] );
56-
if ( !isBoolean( bool ) ) {
56+
if ( typeof bool !== 'boolean' ) {
5757
b.fail( 'should return a boolean' );
5858
}
5959
}

lib/index.js

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

3636
// MODULES //
3737

38-
var isRegExp = require( './main.js' );
38+
var main = require( './main.js' );
3939

4040

4141
// EXPORTS //
4242

43-
module.exports = isRegExp;
43+
module.exports = main;

0 commit comments

Comments
 (0)