Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/isNull.js
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

12 lines
163 B
JavaScript

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