query-string
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -32,3 +32,3 @@ 'use strict'; | ||
if (!ret.hasOwnProperty(key)) { | ||
if (!ret[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.1", | ||
"version": "3.0.2", | ||
"description": "Parse and stringify URL query strings", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -76,2 +76,2 @@ # query-string [![Build Status](https://travis-ci.org/sindresorhus/query-string.svg?branch=master)](https://travis-ci.org/sindresorhus/query-string) | ||
MIT © [Sindre Sorhus](http://sindresorhus.com) | ||
MIT © [Sindre Sorhus](https://sindresorhus.com) |
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
4992