I am trying to use JSSheet in my Netsuite application. I have imported the file xlsx.core.min.js.
I was told by Netsuite the file is retrieved as Base64 text. However when I try to use it I get the following error:
var workbook = XLSX.read(base64text);
error: TypeError: org.mozilla.javascript.Undefined@224c1fae is not a function, it is undefined. (xlsx.js#11374)
I don't understand this error. What is the proper syntax. I even tried:
XLSX.read(base64text, {type: 'base64'});
thoughts?