| 123456789 |
- import { hasDriveLetter } from './extpath.js';
- import { isWindows } from './platform.js';
- export function normalizeDriveLetter(path, isWindowsOS = isWindows) {
- if (hasDriveLetter(path, isWindowsOS)) {
- return path.charAt(0).toUpperCase() + path.slice(1);
- }
- return path;
- }
- let normalizedUserHomeCached = Object.create(null);
|