Skip to content

Commit

Permalink
Run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgarlis committed Jul 1, 2022
1 parent cc9c2fd commit 81dde77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/url.ts
@@ -1,8 +1,8 @@
export function isValidUrl(url: string): boolean {
try {
new URL(url);
} catch(_) {
} catch (_) {
return false;
}
return true;
}
}

0 comments on commit 81dde77

Please sign in to comment.