Skip to content

Commit

Permalink
querystring: fix comments
Browse files Browse the repository at this point in the history
PR-URL: #6365
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
  • Loading branch information
mscdex authored and jasnell committed Apr 26, 2016
1 parent 633268c commit d18daaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/querystring.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ QueryString.parse = QueryString.decode = function(qs, sep, eq, options) {
encodeCheck = 1;
} else if (encodeCheck > 0 &&
((code >= 48/*0*/ && code <= 57/*9*/) ||
(code >= 65/*A*/ && code <= 70/*Z*/) ||
(code >= 97/*a*/ && code <= 102/*z*/))) {
(code >= 65/*A*/ && code <= 70/*F*/) ||
(code >= 97/*a*/ && code <= 102/*f*/))) {
if (++encodeCheck === 3)
valEncoded = true;
} else {
Expand Down Expand Up @@ -341,8 +341,8 @@ QueryString.parse = QueryString.decode = function(qs, sep, eq, options) {
encodeCheck = 1;
} else if (encodeCheck > 0 &&
((code >= 48/*0*/ && code <= 57/*9*/) ||
(code >= 65/*A*/ && code <= 70/*Z*/) ||
(code >= 97/*a*/ && code <= 102/*z*/))) {
(code >= 65/*A*/ && code <= 70/*F*/) ||
(code >= 97/*a*/ && code <= 102/*f*/))) {
if (++encodeCheck === 3)
keyEncoded = true;
} else {
Expand Down

0 comments on commit d18daaa

Please sign in to comment.