mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
replace empty string with space (#17216)
This commit is contained in:
@@ -142,6 +142,6 @@ function removeNewLines(inputString: string): string {
|
|||||||
return 'null';
|
return 'null';
|
||||||
}
|
}
|
||||||
|
|
||||||
let outputString: string = inputString.replace(/(\r\n|\n|\r)/gm, '');
|
let outputString: string = inputString.replace(/(\r\n|\n|\r)/gm, ' ');
|
||||||
return outputString;
|
return outputString;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user