Thomas G. Lopes
UX adjustments (#76)
28faefd unverified
raw
history blame
121 Bytes
export function isValidURL(url: string): boolean {
try {
new URL(url);
return true;
} catch {
return false;
}
}