eight
2024-09-12 ca7922b3af28684b0fd292701b613895537861da
1
2
3
4
 
export function isStringEmpty(value: string | null | undefined): boolean {
  return !value || value.trim() === '';
}