export function singleSpace(str: string) { return str.replace(/\s+/g, " "); }