Skip to content

Commit 8ee5bbe

Browse files
committed
debugger: replace internal use of deprecated API
Change process.binding() use to internalBinding().
1 parent a60f77b commit 8ee5bbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/inspector/inspect_repl.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function extractFunctionName(description) {
8989
}
9090

9191
const PUBLIC_BUILTINS = require('module').builtinModules;
92-
const NATIVES = PUBLIC_BUILTINS ? process.binding('natives') : {};
92+
const NATIVES = PUBLIC_BUILTINS ? internalBinding('natives') : {};
9393
function isNativeUrl(url) {
9494
url = url.replace(/\.js$/, '');
9595
if (PUBLIC_BUILTINS) {

0 commit comments

Comments
 (0)