Tcsm
2023-08-29 73949e79fdf76615209f72164f601a64a146729b
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');