I want to remove unnecessary commas in file, with below code:
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);
I am getting below output from 1st line:
,,,,, ,NTD00539,100000,01,Varsha,20180607
How to remove first 5 commas?