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