Function: isEmptyString()
isEmptyString(
value:string|null|undefined):boolean
Defined in: shared/utils/formValidation.ts:220
Helper to check if a string is empty after trimming.
Parametersโ
valueโ
The string to check
string | null | undefined
Returnsโ
boolean
True if the string is empty or only whitespace
Remarksโ
Common pattern used throughout validation logic.