mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 04:43:14 +00:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
export function isObject(value: any): value is object {
|
|
return value !== null && typeof value === 'object';
|
|
}
|