NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/isNull.js

12 lines
163 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
/**
* 判断是否为Null
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isNull (obj) {
return obj === null
}
module.exports = isNull