let _isEmptyObj = function(obj) {
    for(var key in obj) {
        return false;
    }
    return true;
}

相关文章: