daedalOS/utils/url.ts
2020-09-25 16:04:11 -07:00

11 lines
182 B
TypeScript

export const isValidUrl = (possibleUrl: string): boolean => {
try {
/* eslint no-new: off */
new URL(possibleUrl);
} catch (_) {
return false;
}
return true;
};