UNPKG

hk-core-antdv

Version:

Based on Antd Vue3 custom components

12 lines (11 loc) 340 B
/** * 检查值是否为 undefined || null || '' * @param obj 检查值 */ export declare function isEmpty(obj: any): boolean; /** * 如果为空返回默认值 * @param obj obj * @param defaultValue 默认值,默认为 空字符串,支持回调函数 */ export declare function defaultIfEmpty(obj: any, defaultValue: any): any;