el.xwx.moe/lib/shared/isValidUrl.ts

9 lines
141 B
TypeScript
Raw Normal View History

2023-06-26 18:35:12 -05:00
export default function isValidUrl(string: string) {
try {
new URL(string);
return true;
} catch (err) {
return false;
}
}