1 line
124 B
Plaintext
1 line
124 B
Plaintext
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function'); |