UNPKG

astro

Version:

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

12 lines (11 loc) 265 B
import { PROPAGATED_ASSET_FLAG } from "../../content/consts.js"; function isPropagatedAssetBoundary(id) { try { return new URL(id, "file://").searchParams.has(PROPAGATED_ASSET_FLAG); } catch { return false; } } export { isPropagatedAssetBoundary };