Files
notesnook/packages/core/api/sync/utils.js
2020-04-09 16:36:57 +05:00

7 lines
184 B
JavaScript

function areAllEmpty(obj) {
const arrays = Object.values(obj).filter((v) => v.length !== undefined);
return arrays.every((array) => array.length === 0);
}
export { areAllEmpty };