EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/libs/lodash/is-object.ts
2025-02-08 18:50:38 +08:00

5 lines
136 B
TypeScript

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