mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
Since there is no native code I am just checking all of the dependencies in to simplify life and avoid a hard dependency on npm working on any given day. |
||
|---|---|---|
| .. | ||
| lib | ||
| lib-esm | ||
| src | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
is-any-array
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;