feige
2025-01-02 43e1199ca0c75787fb6b52bef7d595abd115ceab
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');