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 9f6762e commit 2d4ca93Copy full SHA for 2d4ca93
.github/.keepalive
benchmark/benchmark.js
@@ -62,7 +62,7 @@ function createBenchmark( len ) {
62
// Note: we are testing the worst case scenario where a function must scan the entire array before finding a failing value.
63
x[ len-1 ] = fromCodePoint( i % 126 );
64
bool = isNumericArray( x );
65
- if ( !isBoolean( bool ) ) {
+ if ( typeof bool !== 'boolean' ) {
66
b.fail( 'should return a boolean' );
67
}
68
lib/index.js
@@ -38,9 +38,9 @@
38
39
// MODULES //
40
41
-var isNumericArray = require( './main.js' );
+var main = require( './main.js' );
42
43
44
// EXPORTS //
45
46
-module.exports = isNumericArray;
+module.exports = main;
0 commit comments