We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98729b4 commit 209ca07Copy full SHA for 209ca07
src/services/navigationBar.ts
@@ -15,8 +15,8 @@ namespace ts.NavigationBar {
15
*/
16
const whiteSpaceRegex = /\s+/g;
17
18
- /**
19
- * Maximum amount of characters to return
+ /**
+ * Maximum amount of characters to return
20
* The amount was choosen arbitrarily.
21
22
const maxLength = 150;
@@ -713,6 +713,6 @@ namespace ts.NavigationBar {
713
// \r - Carriage Return
714
// \u2028 - Line separator
715
// \u2029 - Paragraph separator
716
- return text.replace(/\\?(\r?\n|\u2028|\u2029)/g, '');
+ return text.replace(/\\?(\r?\n|\u2028|\u2029)/g, "");
717
}
718
0 commit comments