UNPKG

xhy-xe-utils

Version:
12 lines (10 loc) 174 B
/** * 判断是否为Null * * @param {Object} obj 对象 * @return {Boolean} */ function isNull (obj) { return obj === null } module.exports = isNull