eight
2025-04-15 52edcce5511b690c58905884c090b2316aa5e359
src/utils/stringUtil.ts
@@ -1,6 +1,6 @@
export function isStringEmpty(value: string | null | undefined): boolean {
  return !value || value.trim() === '';
  return value == null || value.trim() === '';
}
export function genderFormat(value: number): string {