Socket
Socket
Sign inDemoInstall

qs

Package Overview
Dependencies
Maintainers
0
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.0.3 to 0.0.4

2

._benchmark.js

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�;��"�"com.macromates.caret{
Mac OS X  2��ATTR>s;��"�"com.macromates.caret{
column = 15;
line = 3;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�=��#�#com.macromates.caret{
Mac OS X  2��ATTR>s=��#�#com.macromates.caret{
column = 31;
line = 10;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�?��!�!com.macromates.caret{
column = 0;
line = 5;
Mac OS X  2��ATTR>s?��"�"com.macromates.caret{
column = 14;
line = 4;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�A��"�"com.macromates.caret{
Mac OS X  2��ATTR>sA��"�"com.macromates.caret{
column = 32;
line = 1;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�F��"�"com.macromates.caret{
Mac OS X  2��ATTR>sF��"�"com.macromates.caret{
column = 19;
line = 3;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�H��"�"com.macromates.caret{
column = 20;
line = 7;
Mac OS X  2��ATTR>sH��#�#com.macromates.caret{
column = 271;
line = 3;
}
0.0.4 / 2011-02-09
==================
* Fixed `+` as a space
0.0.3 / 2011-02-08

@@ -3,0 +8,0 @@ ==================

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�|��#�#com.macromates.caret{
Mac OS X  2��ATTR>s|��#�#com.macromates.caret{
column = 24;
line = 11;
}

@@ -12,3 +12,3 @@

exports.version = '0.0.3';
exports.version = '0.0.4';

@@ -27,3 +27,3 @@ /**

.reduce(function(ret, pair){
var pair = decodeURIComponent(pair)
var pair = decodeURIComponent(pair).replace(/\+/g, ' ')
, eql = pair.indexOf('=')

@@ -30,0 +30,0 @@ , brace = lastBraceInKey(pair)

{
"name": "qs",
"description": "querystring parser",
"version": "0.0.3",
"version": "0.0.4",
"repository": {},

@@ -6,0 +6,0 @@ "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",

# node-querystring
query string parser for node supporting nesting, as it was removed from `0.3.x`, so this library provides the previous and commonly desired behaviour (and twice as fast). Used by [express](http://expressjs.com), [connect](http://senchalabs.github.com/connect) and otheres.
query string parser for node supporting nesting, as it was removed from `0.3.x`, so this library provides the previous and commonly desired behaviour (and twice as fast). Used by [express](http://expressjs.com), [connect](http://senchalabs.github.com/connect) and others.

@@ -6,0 +6,0 @@ ## Installation

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR<�L��#�#com.macromates.caret{
column = 62;
line = 93;
Mac OS X  2��ATTR>sL��"�"com.macromates.caret{
column = 0;
line = 12;
}

@@ -11,2 +11,5 @@

'test basics': function(){
qs.parse('foo=c++')
.should.eql({ foo: 'c ' });
qs.parse('a[>=]=23')

@@ -13,0 +16,0 @@ .should.eql({ a: { '>=': '23' }});

Sorry, the diff of this file is not supported yet

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