Feature/excel print

This commit is contained in:
2025-02-11 07:52:38 +00:00
committed by AmirHossein Mahmoodi
parent 63b3ad3fb0
commit 3658345821
32 changed files with 373 additions and 135 deletions

View File

@@ -0,0 +1,6 @@
export default function isArrayEmpty(value) {
if (Array.isArray(value)) {
return value.length === 0 || value.every((v) => v === "");
}
return value === "" || value === null || value === undefined;
}