UNPKG

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