Function: isNonEmptyString()
isNonEmptyString(
value:unknown):value is string
Defined in: shared/utils/typeGuards.ts:257
Checks whether a value is a non-empty string after trimming whitespace.
Parametersโ
valueโ
unknown
Value to evaluate.
Returnsโ
value is string
true when the value is a string containing at least one
non-whitespace character.