Files
clash-proxy/src/utils/helper.ts
2024-11-08 21:46:15 +08:00

10 lines
149 B
TypeScript

export const isValidUrl = (url: string) => {
try {
new URL(url);
return true;
} catch (e) {
console.log(e);
return false;
}
};