is-any-array

Check if a value is any kind of array

Usage no npm install needed!

<script type="module">
  import isAnyArray from 'https://cdn.skypack.dev/is-any-array';
</script>

README

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