export function replaceNonBreakingSpaces(str: string) {
  return str.replace(/\u00a0/g, ' ');
}
