-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathpaths.ts
43 lines (32 loc) · 1.01 KB
/
paths.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import * as nodePath from 'path';
const normalizationCache = new Map<string, string>();
export function normalizePath(path: string): string {
let result = normalizationCache.get(path);
if (result === undefined) {
result = nodePath.win32.normalize(path).replace(/\\/g, nodePath.posix.sep);
normalizationCache.set(path, result);
}
return result;
}
const externalizationCache = new Map<string, string>();
function externalizeForWindows(path: string): string {
let result = externalizationCache.get(path);
if (result === undefined) {
result = nodePath.win32.normalize(path);
externalizationCache.set(path, result);
}
return result;
}
export const externalizePath = (() => {
if (process.platform !== 'win32') {
return (path: string) => path;
}
return externalizeForWindows;
})();