Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 333 Bytes
2c00ea8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
/** Remove excess whitespace and newlines */
export const sanitizeString = (str: string) =>
str
.split("\n")
.map((s) => s.trim())
.filter(Boolean)
.join("\n")
.replaceAll(/ +/g, " ");
/** Collapses a string into a single line */
export const collapseString = (str: string) => sanitizeString(str.replaceAll(/\n/g, " "));
|