11
WXL
2025-07-05 616d4a1b45ac9e1442a5541e21c8c755cde2c78f
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 {