astro-ghostcms/.pnpm-store/v3/files/3c/9d354d847a3a8669d4e4062d153...

15 lines
204 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
const isValidUrl = (s) => {
if (typeof s !== "string" || !s) {
return false;
}
try {
const dummy = new URL(s);
return true;
} catch {
return false;
}
};
export {
isValidUrl
};