UNPKG

@tuniao/tnui-vue3-uniapp

Version:
7 lines (5 loc) 198 B
import { isFunction } from './is-function' import { isLength } from './is-length' export function isArrayLike(value: any) { return value != null && isLength(value.length) && !isFunction(value) }