Skip to content

Commit 52468b3

Browse files
cjihrigtargos
authored andcommitted
querystring: remove unused catch bindings
PR-URL: #24079 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Wyatt Preul <wpreul@gmail.com>
1 parent fb7c1b3 commit 52468b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/querystring.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ function parse(qs, sep, eq, options) {
448448
function decodeStr(s, decoder) {
449449
try {
450450
return decoder(s);
451-
} catch (e) {
451+
} catch {
452452
return QueryString.unescape(s, true);
453453
}
454454
}

0 commit comments

Comments
 (0)