Blob Blame History Raw
--- /opt/rh/nodejs010/root/usr/lib/node_modules/qs/index.js	2013-05-13 11:32:05.000000000 -0400
+++ ./index.js	2016-06-15 07:38:02.461461284 -0400
@@ -162,7 +162,9 @@
 
     for (var i in obj) {
       if (hasOwnProperty.call(obj, i)) {
-        ret.push(obj[i]);
+        // We need to compact the nesting array too
+        // See https://github.com/visionmedia/node-querystring/issues/104
+        ret.push(compact(obj[i]));
       }
     }