django-vue3-admin-web/node_modules/xe-utils/isPlainObject.js
2025-10-20 21:21:14 +08:00

12 lines
215 B
JavaScript

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