We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df5a8f commit abd03c4Copy full SHA for abd03c4
src/compiler/core.ts
@@ -772,8 +772,6 @@ namespace ts {
772
return i < 0 ? path : path.substring(i + 1);
773
}
774
775
- export function combinePaths(path1: string, path2: string): string;
776
- export function combinePaths(path1: Path, path2: string): Path;
777
export function combinePaths(path1: string, path2: string) {
778
if (!(path1 && path1.length)) return path2;
779
if (!(path2 && path2.length)) return path1;
0 commit comments