7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
export default function twuiNormalizeText(txt: string) {
|
|
return txt
|
|
.replace(/\n|\r|\n\r/g, " ")
|
|
.replace(/ {2,}/g, " ")
|
|
.trim();
|
|
}
|