chat-ui-custom / src /lib /utils /isUrl.ts
that1cooldude
Initial chat-ui deployment without binary files
973a4e3
Raw
History Blame Contribute Delete
111 Bytes
export function isURL(url: string) {
try {
new URL(url);
return true;
} catch (e) {
return false;
}
}