We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e2bc8 commit f0f474fCopy full SHA for f0f474f
lib/internal/util/inspector.js
@@ -4,6 +4,7 @@ const {
4
ArrayPrototypeConcat,
5
FunctionPrototypeBind,
6
ObjectDefineProperty,
7
+ ObjectHasOwn,
8
ObjectKeys,
9
} = primordials;
10
@@ -43,7 +44,7 @@ function wrapConsole(consoleFromNode, consoleFromVM) {
43
44
// If global console has the same method as inspector console,
45
// then wrap these two methods into one. Native wrapper will preserve
46
// the original stack.
- if (consoleFromNode.hasOwnProperty(key)) {
47
+ if (ObjectHasOwn(consoleFromNode, key)) {
48
consoleFromNode[key] = FunctionPrototypeBind(
49
consoleCall,
50
consoleFromNode,
0 commit comments