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 3079315 commit cc2339cCopy full SHA for cc2339c
deps/node-inspect/test/cli/address.test.js
@@ -16,7 +16,9 @@ function launchTarget(...args) {
16
};
17
childProc.on('exit', onExit);
18
childProc.stderr.setEncoding('utf8');
19
- childProc.stderr.on('data', (data) => {
+ let data = '';
20
+ childProc.stderr.on('data', (chunk) => {
21
+ data += chunk;
22
const ret = kDebuggerMsgReg.exec(data);
23
childProc.removeListener('exit', onExit);
24
if (ret) {
0 commit comments