mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
3 lines
117 B
TypeScript
3 lines
117 B
TypeScript
export const parseWinPath = (path: string | undefined): string => {
|
|
return path?.split(`\\`).join(`/`) || '';
|
|
} |