query-string
Advanced tools
Comparing version 3.0.2 to 3.0.3
@@ -32,3 +32,3 @@ 'use strict'; | ||
if (!ret[key]) { | ||
if (!ret.hasOwnProperty(key)) { | ||
ret[key] = val; | ||
@@ -42,3 +42,3 @@ } else if (Array.isArray(ret[key])) { | ||
return ret; | ||
}, Object.create(null)); | ||
}, {}); | ||
}; | ||
@@ -45,0 +45,0 @@ |
{ | ||
"name": "query-string", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "Parse and stringify URL query strings", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
4990