Skip to content

Commit

Permalink
Run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgarlis committed Jun 10, 2022
1 parent b5d11b9 commit 1d7097f
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 1d7097f

Please sign in to comment.