NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/isPlainObject.js
2023-09-14 14:47:11 +08:00

12 lines
204 B
JavaScript

/**
* 判断是否对象
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isPlainObject (obj) {
return obj ? obj.constructor === Object : false
}
module.exports = isPlainObject