tailwind-ui-library/components/utils/normalize-text.ts
2026-03-04 17:35:14 +01:00

7 lines
160 B
TypeScript

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