django-vue3-admin-web/node_modules/xe-utils/isNull.js
2025-10-20 21:21:14 +08:00

12 lines
174 B
JavaScript

/**
* 判断是否为Null
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isNull (obj) {
return obj === null
}
module.exports = isNull