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