We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd58d0 commit 8065883Copy full SHA for 8065883
lib/inspector.js
@@ -3,7 +3,7 @@
3
const {
4
JSONParse,
5
JSONStringify,
6
- Map,
+ SafeMap,
7
Symbol,
8
} = primordials;
9
@@ -48,7 +48,7 @@ class Session extends EventEmitter {
48
super();
49
this[connectionSymbol] = null;
50
this[nextIdSymbol] = 1;
51
- this[messageCallbacksSymbol] = new Map();
+ this[messageCallbacksSymbol] = new SafeMap();
52
}
53
54
connect() {
0 commit comments