File size: 138 Bytes
cf9339a
 
 
 
1
2
3
4
5
export function printProcessStdoutEvent(raw: string, _debug: boolean): void {
  const line = raw.trim();
  if (line) console.log(line);
}