Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/isPlainObject.js
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

12 lines
204 B
JavaScript

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