2024-11-05 10:09:18 +08:00

7 lines
198 B
TypeScript

import { isFunction } from './is-function'
import { isLength } from './is-length'
export function isArrayLike(value: any) {
return value != null && isLength(value.length) && !isFunction(value)
}