mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 06:37:10 -04:00
8 lines
287 B
JavaScript
8 lines
287 B
JavaScript
![]() |
/**
|
||
|
* Copied from the Etherpad source code. It converts Windows line breaks to Unix line breaks and convert Tabs to spaces
|
||
|
* @param txt
|
||
|
*/
|
||
|
exports.cleanText = function (txt) {
|
||
|
return txt.replace(/\r\n/g,'\n').replace(/\r/g,'\n').replace(/\t/g, ' ').replace(/\xa0/g, ' ');
|
||
|
};
|