Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 00698cc

Browse filesBrowse files
chenyilMylesBorins
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 b083715 commit 00698cc
Copy full SHA for 00698cc

File tree

Expand file treeCollapse file tree

1 file changed

+3
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-1
lines changed
Open diff view settings
Collapse file

‎lib/internal/bootstrap/node.js‎

Copy file name to clipboardExpand all lines: lib/internal/bootstrap/node.js
+3-1Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,9 @@
504504
const { kExpandStackSymbol } = NativeModule.require('internal/util');
505505
if (typeof er[kExpandStackSymbol] === 'function')
506506
er[kExpandStackSymbol]();
507-
} catch (er) {}
507+
} catch {
508+
// Nothing to be done about it at this point.
509+
}
508510
return false;
509511
}
510512

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.