debugger: rename internal module

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: https://github.com/nodejs/node/pull/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>
This commit is contained in:
Rich Trott
2021-07-13 12:01:02 -07:00
parent e239f5ea36
commit c12db606ee
2 changed files with 1 additions and 1 deletions

View File

@@ -13,5 +13,5 @@ markBootstrapComplete();
// Start the debugger agent.
process.nextTick(() => {
require('internal/debugger/_inspect').start();
require('internal/debugger/inspect').start();
});