Files

12 lines
163 B
JavaScript
Raw Permalink Normal View History

2024-12-03 17:40:13 +08:00
/**
* 判断是否为Null
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isNull (obj) {
return obj === null
}
module.exports = isNull