querystring: remove unused catch bindings

PR-URL: https://github.com/nodejs/node/pull/24079
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Wyatt Preul <wpreul@gmail.com>
pull/24079/head
cjihrig 2018-11-04 10:05:46 -05:00
parent 30f58b92ee
commit ab14ad1f9d
No known key found for this signature in database
GPG Key ID: 7434390BDBE9B9C5
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ function parse(qs, sep, eq, options) {
function decodeStr(s, decoder) {
try {
return decoder(s);
} catch (e) {
} catch {
return QueryString.unescape(s, true);
}
}