WXL
2025-07-30 bc9e46d16a8f01f3a67b0aee8931264818a563e0
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 {