In Node.js there is a way: process.stdout
So, this may work:
process.stdout.write(`${index},`);
where index
is a current data and ,
is a delimiter.
Also you can check same topic here.
In Node.js there is a way: process.stdout
So, this may work:
process.stdout.write(`${index},`);
where index
is a current data and ,
is a delimiter.
Also you can check same topic here.