Skip to content

Commit

Permalink
debugger: rename internal module
Browse files Browse the repository at this point in the history
All other files in `lib/internal` do not start with `_`. For
consistency, move `lib/internal/debugger/_inspect.js` to
`lib/internal/debugger/inspect.js`.

PR-URL: #39378
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott committed Jul 16, 2021
1 parent e239f5e commit c12db60
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/internal/main/inspect.js
Expand Up @@ -13,5 +13,5 @@ markBootstrapComplete();

// Start the debugger agent.
process.nextTick(() => {
require('internal/debugger/_inspect').start();
require('internal/debugger/inspect').start();
});

0 comments on commit c12db60

Please sign in to comment.