UNPKG

@sishuguojixuefu/react-native-form

Version:
12 lines (10 loc) 199 B
/** * 判断一个 object 对象是否为空 */ const checkNullObj = (obj: {}): boolean => { if (obj) { return Object.keys(obj).length === 0 } return false } export default checkNullObj