@markuplint/shared
Advanced tools
Comparing version 4.0.0-alpha.3 to 4.0.0-alpha.4
@@ -78,8 +78,8 @@ import { decode as decodeHtmlEntities } from 'html-entities'; | ||
} | ||
catch (e) { | ||
if (e instanceof URIError) { | ||
catch (error) { | ||
if (error instanceof URIError) { | ||
return href; | ||
} | ||
throw e; | ||
throw error; | ||
} | ||
} |
{ | ||
"name": "@markuplint/shared", | ||
"version": "4.0.0-alpha.3", | ||
"version": "4.0.0-alpha.4", | ||
"description": "Shared functions for Markuplint", | ||
@@ -29,3 +29,3 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
}, | ||
"gitHead": "380836f7adc1ff7e8eaf9d869e68d29eee8f3b7e" | ||
"gitHead": "991b3aef77fde42c79343ee8c807257a35c589d7" | ||
} |
7757