NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/isPlainObject.js

12 lines
204 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
/**
* 判断是否对象
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isPlainObject (obj) {
return obj ? obj.constructor === Object : false
}
module.exports = isPlainObject