UNPKG

@aplus-frontend/utils

Version:

Utils for Aplus frontend team.

13 lines (12 loc) 287 B
/** * 判断对象是否包含有意义的值 * @param obj 判断的对象 * @returns */ export declare const isObjectWithContent: (obj: any) => boolean; /** * 判断值不否为空 * @param value 判断的值 * @returns */ export declare const isValid: (value: any) => boolean;