Skip to content
wolfram77 edited this page Apr 13, 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