All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.moment.src.lib.utils.is-object-empty.js Maven / Gradle / Ivy

export default function isObjectEmpty(obj) {
    var k;
    for (k in obj) {
        // even if its not own property I'd still call it non-empty
        return false;
    }
    return true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy