jquery判断是否是空对象 不含任何属性?

code

function isEmptyObject(e) {
    var t;
    for (t in e)
        return !1;
    return !0
}