File size: 121 Bytes
28faefd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export function isValidURL(url: string): boolean {
	try {
		new URL(url);
		return true;
	} catch {
		return false;
	}
}