mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-21 22:19:41 +01:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
function areAllEmpty(obj) {
|
|
const arrays = Object.values(obj).filter((v) => v && v.length !== undefined);
|
|
return arrays.every((array) => array.length === 0);
|
|
}
|
|
|
|
export { areAllEmpty };
|