blob: 6f634d4d9f13e0b8e8916196587eaaed00d34020 [file] [log] [blame]
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');