UNPKG

@astrojs/sitemap

Version:
15 lines (14 loc) 190 B
const isValidUrl = (s) => { if (typeof s !== "string" || !s) { return false; } try { new URL(s); return true; } catch { return false; } }; export { isValidUrl };