@movable/escort
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -1140,3 +1140,7 @@ /*! | ||
fromUrl: function (value) { | ||
value = decodeURIComponent(value); | ||
try { | ||
value = decodeURIComponent(value); | ||
} catch(e) { | ||
throw new ValidationError(); | ||
} | ||
if (!this._allowNonASCII && !isASCII(value)) { | ||
@@ -1143,0 +1147,0 @@ throw new ValidationError(); |
{ | ||
"name": "@movable/escort", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Routing and URL generation middleware", | ||
@@ -5,0 +5,0 @@ "keywords": ["framework", "web", "middleware", "connect", "escort", "routing", "url"], |
158182
3071