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

qs

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qs - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

11

index.js

@@ -1,2 +0,1 @@

/**

@@ -9,2 +8,8 @@ * Object#toString() ref for stringify().

/**
* Object#hasOwnProperty ref
*/
var hasOwnProperty = Object.prototype.hasOwnProperty;
/**
* Array#indexOf shim.

@@ -176,3 +181,5 @@ */

for (var key in obj) {
obj[key] = restoreProto(obj[key]);
if (hasOwnProperty.call(obj, key)) {
obj[key] = restoreProto(obj[key]);
}
}

@@ -179,0 +186,0 @@

2

package.json
{
"name": "qs",
"description": "querystring parser",
"version": "0.6.3",
"version": "0.6.4",
"keywords": ["query string", "parser", "component"],

@@ -6,0 +6,0 @@ "repository": {

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