Skip to content

Commit ab14ad1

Browse files
committed
querystring: remove unused catch bindings
PR-URL: #24079 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Wyatt Preul <wpreul@gmail.com>
1 parent 30f58b9 commit ab14ad1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/querystring.js

Lines changed: 1 addition & 1 deletion
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)