UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

12 lines (11 loc) 293 B
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 };