Skip to content

Commit d5bfa4b

Browse files
committed
Kick out of normalizePath if there's nothing to do
...using `relativePathSegmentRegExp`. Bonus: use a regex to handle "/./" to avoid splitting and joining in a common case. When building the compiler, for example, it looks like ~95% of arguments to `normalizePath` do not require any normalization.
1 parent 87c5b6a commit d5bfa4b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/compiler/path.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,10 @@ namespace ts {
547547

548548
export function normalizePath(path: string): string {
549549
path = normalizeSlashes(path);
550+
path = path.replace(/\/\.\//g, "/");
551+
if (!relativePathSegmentRegExp.test(path)) {
552+
return path;
553+
}
550554
const normalized = getPathFromPathComponents(reducePathComponents(getPathComponents(path)));
551555
return normalized && hasTrailingDirectorySeparator(path) ? ensureTrailingDirectorySeparator(normalized) : normalized;
552556
}
@@ -658,7 +662,7 @@ namespace ts {
658662
//// Path Comparisons
659663

660664
// check path for these segments: '', '.'. '..'
661-
const relativePathSegmentRegExp = /(^|\/)\.{0,2}($|\/)/;
665+
const relativePathSegmentRegExp = /(?:^|\/)\.\.?(?:$|\/)|\/\//;
662666

663667
function comparePathsWorker(a: string, b: string, componentComparer: (a: string, b: string) => Comparison) {
664668
if (a === b) return Comparison.EqualTo;

0 commit comments

Comments
 (0)