‘liusuyi’
2023-08-22 7a880de423619dc266a60dc643794ba626f7131f
1
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');