export const isEmpty = (value: unknown) => { return ( value === null || value === undefined || (typeof value === "string" && value.trim() === "") ) }