isArray.ts 112 Bytes Raw Blame History Permalink 1 export const isArray = (() => Array.isArray || (<T>(x: any): x is T[] => x && typeof x.length === 'number'))();