mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 16:42:28 +08:00
This is already used for more than just themes, and we plan to extend its usage even further
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;
|
|
}
|