eqNull.js 263 B

12345678910111213
  1. var isNull = require('./isNull')
  2. var isUndefined = require('./isUndefined')
  3. /**
  4. * 判断是否 undefined 和 null
  5. * @param {Object} obj 对象
  6. * @return {Boolean}
  7. */
  8. function eqNull (obj) {
  9. return isNull(obj) || isUndefined(obj)
  10. }
  11. module.exports = eqNull