Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
lint, missed in QS speed merge
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Feb 23, 2012
1 parent 73806b5 commit d3b8372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/querystring.js
Expand Up @@ -192,7 +192,7 @@ QueryString.parse = QueryString.decode = function(qs, sep, eq, options) {
try {
k = decodeURIComponent(kstr);
v = decodeURIComponent(vstr);
} catch(e) {
} catch (e) {
k = QueryString.unescape(kstr, true);
v = QueryString.unescape(vstr, true);
}
Expand Down

0 comments on commit d3b8372

Please sign in to comment.