// Checks if string contains non-whitespace characters
export function isNotBlank(str: string): boolean {
  return str.trim().length > 0;
}
