mirror of
https://github.com/discourse/discourse.git
synced 2026-08-04 10:39:43 +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;
|
|
}
|