8000 Auto-generated commit · stdlib-js/assert-is-array-array@1d37615 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d37615

Browse files
committed
Auto-generated commit
1 parent 228ac74 commit 1d37615

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

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 isArrayArray = require( './main.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

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

0 commit comments

Comments
 (0)
0