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