7 lines
130 B
JavaScript
7 lines
130 B
JavaScript
|
export default function cleanWhitespace(string) {
|
||
|
return string
|
||
|
.replace(/\n/g, '')
|
||
|
.replace(/ +/g, ' ')
|
||
|
.trim();
|
||
|
}
|