feige
2025-04-20 7eb199649939226c3f11fd6f4cda830a389253b8
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');