@tinyhttp/url
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -7,4 +7,5 @@ import { parse } from 'querystring'; | ||
if (matches && typeof keys !== 'boolean') | ||
for (let i = 0; i < keys.length; i++) | ||
params[keys[i]] = matches[i + 1]; | ||
for (let i = 0; i < keys.length; i++) { | ||
params[keys[i]] = decodeURIComponent(matches[i + 1]); | ||
} | ||
return params; | ||
@@ -11,0 +12,0 @@ }; |
{ | ||
"name": "@tinyhttp/url", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "URL extensions for tinyhttp", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3302
28