Revert "Added Vite to frontend builds"

This reverts commit 2b5d2d7949.
This commit is contained in:
Matteo Biscosi 2025-05-22 15:30:23 +02:00
parent c40f854283
commit 4e31f600f6
118 changed files with 34006 additions and 10177 deletions

View file

@ -10,23 +10,23 @@
/* This function check if value is not set (null or empty).
* Do not check for 0 as it may be a valid value. */
const isEmptyOrNull = (value) => {
return !!(value == null || value == '');
};
return !!(value == null || value == "");
}
/* This function check if value is not set (null or empty).
* Do not check for 0 as it may be a valid value. */
const isEmptyString = (value) => {
return !!(value == null || value === '');
};
return !!(value == null || value === "");
}
/* This function check if value is null, or an empty array */
const isEmptyArrayOrNull = (value) => {
return !!(value == null || value.length === 0);
};
}
/* ******************************************************************** */
const dataUtils = function() {
const dataUtils = function () {
return {
isEmptyString,
isEmptyOrNull,