FurBall/uni_modules/tuniaoui-vue3/libs/lodash/is-object-like.ts

4 lines
106 B
TypeScript

export function isObjectLike(value?: any): boolean {
return value != null && typeof value == 'object'
}