We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458a6de commit ee9f892Copy full SHA for ee9f892
src/compiler/core.ts
@@ -1829,8 +1829,6 @@ namespace ts {
1829
return i < 0 ? path : path.substring(i + 1);
1830
}
1831
1832
- export function combinePaths(path1: Path, path2: string): Path;
1833
- export function combinePaths(path1: string, path2: string): string;
1834
export function combinePaths(path1: string, path2: string): string {
1835
if (!(path1 && path1.length)) return path2;
1836
if (!(path2 && path2.length)) return path1;
0 commit comments