simplify regex

This commit is contained in:
Arthur Ozga
2016-10-25 11:03:54 -07:00
parent 476b6e02c8
commit 77df58bdb6

View File

@@ -638,5 +638,5 @@ namespace ts.NavigationBar {
*
* does not match.
*/
const whiteSpaceRegex = /(\s|\t|\n|\r)+/g;
const whiteSpaceRegex = /\s+/g;
}