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 authored and targos committed Sep 4, 2021
1 parent 672023f commit e9c4610
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 @@ -18,5 +18,5 @@ markBootstrapComplete();

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

0 comments on commit e9c4610

Please sign in to comment.