is-any-array
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i is-any-array

Weekly Downloads

423,212

Version

2.0.1

License

MIT

Unpacked Size

7.96 kB

Total Files

13

Last publish

Collaborators

  • targos
  • lpatiny
  • cheminfo-bot
  • stropitek