Skip to content
Subhajit Sahu edited this page May 19, 2020 · 17 revisions

Checks if value is array. 🏃 📼 📦 🌔 📒

array.is(v);
// v: value
const array = require('extra-array');

array.is([1, 2]);
// true

array.is([]);
// true

array.is(new Set([1, 2]));
// false

references

Clone this wiki locally