Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/isNull.js
2024-12-05 09:33:18 +08:00

12 lines
163 B
JavaScript

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