Skip to content

Commit 4291c43

Browse files
pdxmholmesjasnell
authored andcommitted
lib: remove unused 'e' from catch
PR-URL: #23458 Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Hitesh Kanwathirtha <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent 47784c4 commit 4291c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/querystring.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function unescapeBuffer(s, decodeSpaces) {
109109
function qsUnescape(s, decodeSpaces) {
110110
try {
111111
return decodeURIComponent(s);
112-
} catch (e) {
112+
} catch {
113113
return QueryString.unescapeBuffer(s, decodeSpaces).toString();
114114
}
115115
}

0 commit comments

Comments
 (0)