plane/apps/app/components/tiptap/bubble-menu/utils/link-validator.tsx

13 lines
219 B
TypeScript
Raw Normal View History

2023-08-17 14:22:58 +00:00
export default function isValidHttpUrl(string: string): boolean {
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === "http:" || url.protocol === "https:";
}