We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9962d31 commit e771c0fCopy full SHA for e771c0f
lib/common-node.js
@@ -52,11 +52,7 @@ exports.toUInt32 = toUInt32
52
* @return {Object}
53
*/
54
exports.querystringParse = function (q) {
55
- var saved = querystring.unescape
56
- querystring.unescape = unescape // global
57
- var ret = querystring.parse(q)
58
- querystring.unescape = saved
59
- return ret
+ return querystring.parse(q, { decodeURIComponent: unescape })
60
}
61
62
/**
0 commit comments