is-array.js 114 Bytes
export default function isArray(input) {
    return Object.prototype.toString.call(input) === '[object Array]';
}