We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37583c0 commit 5ffb69aCopy full SHA for 5ffb69a
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@primoui/utils",
3
"description": "A lightweight set of utilities",
4
- "version": "1.2.1",
+ "version": "1.2.2",
5
"license": "MIT",
6
"type": "module",
7
"author": {
src/http/http.ts
@@ -79,8 +79,7 @@ export const isValidUrl = (url?: string) => {
79
try {
80
new URL(url)
81
return true
82
- } catch (error) {
83
- console.error(error)
+ } catch {
84
return false
85
}
86
0 commit comments