Skip to content

Commit 475403d

Browse files
committed
Auto-generated commit
1 parent 377b62d commit 475403d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/.keepalive

-1
This file was deleted.

benchmark/benchmark.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ bench( pkg, function benchmark( b ) {
3939
for ( i = 0; i < b.iterations; i++ ) {
4040
x = round( (randu()*1.0e7) - 5.0e6 );
4141
y = isNegativeInteger( x );
42-
if ( !isBoolean( y ) ) {
42+
if ( typeof y !== 'boolean' ) {
4343
b.fail( 'should return a boolean' );
4444
}
4545
}

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
// MODULES //
4040

41-
var isNegativeInteger = require( './is_negative_integer.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = isNegativeInteger;
46+
module.exports = main;
File renamed without changes.

0 commit comments

Comments
 (0)