11
WXL
2025-05-30 f030d8a9607cef32ee41e01d96817c7e47681602
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 {