mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 17:48:30 +08:00
7 lines
158 B
JavaScript
Vendored
7 lines
158 B
JavaScript
Vendored
export function pathToFileURL(path) {
|
|
return new URL(path, "file://").toString();
|
|
}
|
|
|
|
export function fileURLToPath(url) {
|
|
return new URL(url).pathname;
|
|
}
|