2nd column values contains file MIME type.
I need to add a condition, that would be true for all the above file MIME type.
Basically, need a condition for all excel files.
This is what I tried,
const isXlsFile = !!(
file.mimetype &&
~file.mimetype.indexOf('spreadsheetml.sheet')