mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-19 10:54:06 -06:00
fix(helpers): correct regex of function escapePath
This commit is contained in:
parent
bacd19c4ea
commit
bc3667e314
@ -7,8 +7,8 @@ import fs from "fs"
|
|||||||
export function escapePath(fp) {
|
export function escapePath(fp) {
|
||||||
return fp
|
return fp
|
||||||
.replace(/\\ /g, " ") // unescape spaces
|
.replace(/\\ /g, " ") // unescape spaces
|
||||||
.replace(/^".*"$/, "$1")
|
.replace(/^"(.*)"$/, "$1")
|
||||||
.replace(/^'.*"$/, "$1")
|
.replace(/^'(.*)'$/, "$1")
|
||||||
.trim()
|
.trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user