Skip to content

Commit 4603662

Browse files
authored
Merge pull request #22 from alhazmy13/fix/print-out
fix-print-out
2 parents 7c39a86 + 899fdfe commit 4603662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functionHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function runProxyHandler(funOptions, options) {
2525
process.stdin.end();
2626
let results = ''
2727
let hasDetectedJson = false;
28-
process.stdout.on('data', (data) => {
28+
process.stdin.on('data', (data) => {
2929
let str = data.toString('utf8');
3030
if (hasDetectedJson) {
3131
// Assumes that all data after matching the start of the

0 commit comments

Comments
 (0)