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

g2701_2800.s2727_is_object_empty.solution.ts Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
// #Easy #2023_09_19_Time_52_ms_(79.26%)_Space_44.6_MB_(77.05%)

function isEmpty(obj: Record | any[]): boolean {
    return Object.keys(obj).length === 0
}

export { isEmpty }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy