feige
2024-08-21 f81e83fca9cfca4d5149450433d9650b9dd59197
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');