Skip to content

Performance issue in converting excel to json #12

@Anmolk22

Description

@Anmolk22
var data = new Uint8Array(arraybuffer);
  var arr = new Array();
  for(var i = 0; i != data.length; ++i) arr[i] = String.fromCharCode(data[i]);
  var bstr = arr.join("");

  /* Call XLSX */
  var workbook = XLSX.read(bstr, {type:"binary"});

I am working converting an excel sheet to json. this excel sheet contains 2000 rows and 6 columns I am using fileReader on ie11 and I followed the demo in the documentation and it is working fine for 100 columns but it gets stuck for this excel. Can we optimize it any how

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions