Files
notesnook/packages/core/api/sync/utils.js
2021-10-29 13:02:33 +05:00

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 };