isNull.js 163 B

1234567891011
  1. /**
  2. * 判断是否为Null
  3. *
  4. * @param {Object} obj 对象
  5. * @return {Boolean}
  6. */
  7. function isNull (obj) {
  8. return obj === null
  9. }
  10. module.exports = isNull