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