Skip to content

Commit 2d4ca93

Browse files
committed
Auto-generated commit
1 parent 9f6762e commit 2d4ca93

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
@@ -62,7 +62,7 @@ function createBenchmark( len ) {
6262
// Note: we are testing the worst case scenario where a function must scan the entire array before finding a failing value.
6363
x[ len-1 ] = fromCodePoint( i % 126 );
6464
bool = isNumericArray( x );
65-
if ( !isBoolean( bool ) ) {
65+
if ( typeof bool !== 'boolean' ) {
6666
b.fail( 'should return a boolean' );
6767
}
6868
}

lib/index.js

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

3939
// MODULES //
4040

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

4343

4444
// EXPORTS //
4545

46-
module.exports = isNumericArray;
46+
module.exports = main;

0 commit comments

Comments
 (0)