Skip to content

Commit 313b44b

Browse files
chenyiljasnell
authored andcommitted
lib: remove an unused variable
PR-URL: #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>
1 parent d1a23cc commit 313b44b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/internal/bootstrap/node.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,9 @@
632632
const { kExpandStackSymbol } = NativeModule.require('internal/util');
633633
if (typeof er[kExpandStackSymbol] === 'function')
634634
er[kExpandStackSymbol]();
635-
} catch (er) {}
635+
} catch {
636+
// Nothing to be done about it at this point.
637+
}
636638
return false;
637639
}
638640

0 commit comments

Comments
 (0)