Files for my website bwc9876.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use Buffer.concat for Resume output

Ben C 04c87f76 48b16bf6

+1 -3
+1 -3
src/pages/resume.pdf.ts
··· 21 21 if (stdout === null) { 22 22 stdout = data; 23 23 } else { 24 - stdout += data; 24 + stdout = Buffer.concat([stdout, data]); 25 25 } 26 26 }); 27 27 ··· 36 36 reject(new Error(`Exited with code ${code} Stderr: ${stderr}`)); 37 37 } 38 38 }); 39 - 40 - 41 39 }); 42 40 }; 43 41