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 721b504 commit 4a0758dCopy full SHA for 4a0758d
lib/common-node.js
@@ -56,7 +56,7 @@ exports.querystringStringify = function (obj) {
56
var saved = querystring.escape
57
querystring.escape = escape // global
58
var ret = querystring.stringify(obj)
59
- ret = ret.replace(/[\@\*\/\+]/g, function (char) {
+ ret = ret.replace(/[@\*\/\+]/g, function (char) {
60
// `escape` doesn't encode the characters @*/+ so we do it manually
61
return '%' + char.charCodeAt(0).toString(16).toUpperCase()
62
})
0 commit comments