I'm having trouble reading a .xls file using the ExcelJS library. No problems reading .xlsx files. I used to use only the xlsx js library and did not have any issues reading .xls files.
I was under the impression ExcelJS included xlsx library so my assumption was that reading .xls would work as expected.
So my question is...can I convert .xls to .xlsx using exceljs (I cannot require a user to convert the file themselves in excel) or can I somehow implement the unzip from xlsx js library and incorporate it in the exceljs source code to make it possible?
I switched to exceljs because it seemed more straightforward when it comes to creating excel files.
Also, I'm not sure if it makes a difference, but the xlsx project I had reading .xls files was on a PC and currently I'm coding this new project on a Mac.
Thanks All