UNPKG

@farris/devkit-vue

Version:
15 lines (14 loc) 249 B
/** * 对象工具类 */ declare class ObjectUtil { /** * 是否是对象 */ static isObject(value: any): boolean; /** * 判断对象是否为空 */ static isEmpty(value: any): boolean; } export { ObjectUtil };