JavaScript Sprawdź pustą właściwość

function isObjectEmpty(obj) {
    return Object.keys(obj).length === 0;
}
Grepper