Files
notesnook/packages/core/api/sync/utils.js

7 lines
189 B
JavaScript
Raw Normal View History

2020-04-09 16:36:57 +05:00
function areAllEmpty(obj) {
2020-10-29 14:02:41 +05:00
const arrays = Object.values(obj).filter((v) => v && v.length !== undefined);
2020-04-09 16:36:57 +05:00
return arrays.every((array) => array.length === 0);
}
export { areAllEmpty };