lib: remove an unused variable

PR-URL: https://github.com/nodejs/node/pull/23482
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Claire Liu 2018-10-12 09:56:36 -07:00 committed by Anna Henningsen
parent 7b3f14a640
commit 5799f41c93
No known key found for this signature in database
GPG Key ID: 9C63F3A6CD2AD8F9

View File

@ -632,7 +632,9 @@
const { kExpandStackSymbol } = NativeModule.require('internal/util');
if (typeof er[kExpandStackSymbol] === 'function')
er[kExpandStackSymbol]();
} catch (er) {}
} catch {
// Nothing to be done about it at this point.
}
return false;
}