query-string
Advanced tools
Comparing version 4.3.1 to 4.3.2
@@ -49,5 +49,5 @@ 'use strict'; | ||
return function (key, value, accumulator) { | ||
result = /\[(\d*)]$/.exec(key); | ||
result = /\[(\d*)\]$/.exec(key); | ||
key = key.replace(/\[\d*]$/, ''); | ||
key = key.replace(/\[\d*\]$/, ''); | ||
@@ -68,5 +68,5 @@ if (!result) { | ||
return function (key, value, accumulator) { | ||
result = /(\[])$/.exec(key); | ||
result = /(\[\])$/.exec(key); | ||
key = key.replace(/\[]$/, ''); | ||
key = key.replace(/\[\]$/, ''); | ||
@@ -73,0 +73,0 @@ if (!result || accumulator[key] === undefined) { |
{ | ||
"name": "query-string", | ||
"version": "4.3.1", | ||
"version": "4.3.2", | ||
"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
10770