You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
hanyuqing 1ff6b4a3ae 22 4 months ago
..
lib 22 4 months ago
lib-esm 22 4 months ago
src 22 4 months ago
LICENSE 22 4 months ago
README.md 22 4 months ago
package.json 22 4 months ago

README.md

is-any-array

NPM version build status npm download

Check if a value is any kind of array.

Installation

$ npm install is-any-array

Example

const {isAnyArray} = require('is-any-array');

isAnyArray(1); // false
isAnyArray('ab'); // false
isAnyArray({ a: 1 }); // false

isAnyArray([1, 2, 3]); // true
isAnyArray(new Uint16Array(2))) // true;

License

MIT