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