g2701_2800.s2727_is_object_empty.solution.ts Maven / Gradle / Ivy
// #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 - 2025 Weber Informatics LLC | Privacy Policy