mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-08 06:14:36 +02:00
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
export const parseWinPath = (path: string | undefined): string => {
|
|
return path?.split(`\\`).join(`/`) || '';
|
|
} |