Spaces:
Runtime error
Runtime error
File size: 232 Bytes
13095e0 |
1 2 3 4 5 6 7 8 9 10 |
export const cleanSourceText = (text: string) => {
return text
.trim()
.replace(/(\n){4,}/g, '\n\n\n')
.replace(/\n\n/g, ' ')
.replace(/ {3,}/g, ' ')
.replace(/\t/g, '')
.replace(/\n+(\s*\n)*/g, '\n');
};
|