Skip to content

Commit f0f474f

Browse files
committed
inspector: use ObjectHasOwn primordial
Avoid Object.prototype.hasOwnProperty. Use primordial ObjectHasOwn instead.
1 parent e2e2bc8 commit f0f474f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/internal/util/inspector.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const {
44
ArrayPrototypeConcat,
55
FunctionPrototypeBind,
66
ObjectDefineProperty,
7+
ObjectHasOwn,
78
ObjectKeys,
89
} = primordials;
910

@@ -43,7 +44,7 @@ function wrapConsole(consoleFromNode, consoleFromVM) {
4344
// If global console has the same method as inspector console,
4445
// then wrap these two methods into one. Native wrapper will preserve
4546
// the original stack.
46-
if (consoleFromNode.hasOwnProperty(key)) {
47+
if (ObjectHasOwn(consoleFromNode, key)) {
4748
consoleFromNode[key] = FunctionPrototypeBind(
4849
consoleCall,
4950
consoleFromNode,

0 commit comments

Comments
 (0)