UNPKG

router-register-plugin

Version:

鸿蒙ZRouter动态路由框架页面模板化插件

19 lines (12 loc) 353 B
/** * @author: HZWei * @date: 2024/12/5 * @desc: */ function isEmpty(obj: string | any | undefined | null) { return obj === undefined || obj === null || (typeof obj ==='string' && obj.trim() === '') } function isNotEmpty(obj: string | any | undefined | null) { return !isEmpty(obj) } export { isEmpty, isNotEmpty }