Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 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