kjelsrud.dev/node_modules/@astrojs/sitemap/dist/utils/is-valid-url.js
2023-07-19 21:31:30 +02:00

14 lines
204 B
JavaScript

const isValidUrl = (s) => {
if (typeof s !== "string" || !s) {
return false;
}
try {
const dummy = new URL(s);
return true;
} catch {
return false;
}
};
export {
isValidUrl
};