Files
skills-here-run-place/node_modules/astro/dist/assets/utils/url.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

12 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
};