linwenling
2023-07-31 01adce6d9fc82f29cc2a29b35ee727b642284715
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');