mirror of
https://github.com/darkings/Obsidian-MonokaiSyntax.git
synced 2026-07-22 04:40:26 +00:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
export default function slash(path) {
|
|
const isExtendedLengthPath = path.startsWith('\\\\?\\');
|
|
|
|
if (isExtendedLengthPath) {
|
|
return path;
|
|
}
|
|
|
|
return path.replace(/\\/g, '/');
|
|
}
|