• File: xlsxworker.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/xlsx/xlsxworker.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 432 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
importScripts('dist/shim.min.js');
/* uncomment the next line for encoding support */
importScripts('dist/cpexcel.js');
importScripts('xlsx.js');
postMessage({t:"ready"});

onmessage = function (evt) {
  var v;
  try {
    v = XLSX.read(evt.data.d, {type: evt.data.b});
postMessage({t:"xlsx", d:JSON.stringify(v)});
  } catch(e) { postMessage({t:"e",d:e.stack||e}); }
};