monaco-editor-core
Version:
A browser based code editor
10 lines (9 loc) • 343 B
JavaScript
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);