mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-21 05:59:35 +01:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
function areAllEmpty(obj) {
|
|
for (let key in obj) {
|
|
const value = obj[key];
|
|
if (Array.isArray(value) && value.length > 0) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export { areAllEmpty };
|