Seeking assistance with removing extraneous commas from a file, using the code snippet below:
const data: any = utils.sheet_to_csv(ws);
let blob = new Blob(['\ufeff' + data], { type: 'text;charset=utf-8;' });
let dwldLink = document.createElement("a");
let url = URL.createObjectURL(blob);
Presently, the output on the first line appears as follows:
,,,,, ,NTD00539,100000,01,Varsha,20180607
Is there a way to eliminate the initial five commas?