Skip to content

Commit

Permalink
Merge pull request #22 from alhazmy13/fix/print-out
Browse files Browse the repository at this point in the history
fix-print-out
  • Loading branch information
alhazmy13 authored Nov 21, 2021
2 parents 7c39a86 + 899fdfe commit 4603662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functionHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function runProxyHandler(funOptions, options) {
process.stdin.end();
let results = ''
let hasDetectedJson = false;
process.stdout.on('data', (data) => {
process.stdin.on('data', (data) => {
let str = data.toString('utf8');
if (hasDetectedJson) {
// Assumes that all data after matching the start of the
Expand Down

0 comments on commit 4603662

Please sign in to comment.