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.30
Show newest version
// #Easy #2023_08_03_Time_49_ms_(98.24%)_Space_44.6_MB_(79.35%)

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

export { isEmpty }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy