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

15 lines
208 B
JavaScript

/**
* 判断是否为空对象
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isEmpty (obj) {
for (var key in obj) {
return false
}
return true
}
module.exports = isEmpty