Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

query-string

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

query-string - npm Package Compare versions

Comparing version 4.3.1 to 4.3.2

8

index.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc