is-array.js 164 Bytes Raw Blame History Permalink 1 2 3 4 5 6 export default function isArray(input) { return ( input instanceof Array || Object.prototype.toString.call(input) === '[object Array]' ); }