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

5 lines
136 B
TypeScript

export function isObject(value: any) {
const type = typeof value
return value != null && (type == 'object' || type == 'function')
}