UNPKG

xe-utils

Version:

JavaScript 函数库、工具类

14 lines (11 loc) 268 B
import isNull from './isNull' import isUndefined from './isUndefined' /** * 判断是否 undefined 和 null * @param {Object} obj 对象 * @return {Boolean} */ function eqNull (obj) { return isNull(obj) || isUndefined(obj) } export default eqNull