IOweb/node_modules/astro/dist/assets/utils/url.js
2026-07-03 15:07:38 -05:00

11 lines
293 B
JavaScript

const PLACEHOLDER_BASE = "astro://placeholder";
function createPlaceholderURL(pathOrUrl) {
return new URL(pathOrUrl, PLACEHOLDER_BASE);
}
function stringifyPlaceholderURL(url) {
return url.href.replace(PLACEHOLDER_BASE, "");
}
export {
createPlaceholderURL,
stringifyPlaceholderURL
};