8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228ac74 commit 1d37615Copy full SHA for 1d37615
.github/.keepalive
benchmark/benchmark.js
@@ -61,7 +61,7 @@ function createBenchmark( len ) {
61
// Note: we are testing the worst case scenario where a function must scan the entire array before finding a failing value.
62
x[ len-1 ] = i;
63
bool = isArrayArray( x );
64
- if ( !isBoolean( bool ) ) {
+ if ( typeof bool !== 'boolean' ) {
65
b.fail( 'should return a boolean' );
66
}
67
lib/index.js
@@ -38,9 +38,9 @@
38
39
// MODULES //
40
41
-var isArrayArray = require( './main.js' );
+var main = require( './main.js' );
42
43
44
// EXPORTS //
45
46
-module.exports = isArrayArray;
+module.exports = main;
0 commit comments