Comparing version 0.11.4 to 0.11.5
{ | ||
"name": "js-xlsx", | ||
"homepage": "https://github.com/SheetJS/js-xlsx", | ||
"main": "dist/xlsx.core.min.js", | ||
"main": "dist/xlsx.full.min.js", | ||
"ignore": [ | ||
@@ -6,0 +6,0 @@ "bin", |
@@ -7,2 +7,7 @@ # CHANGELOG | ||
## 0.11.5 (2017-09-30) | ||
* Bower main script shifted to full version | ||
* 'binary' / 'string' encoding | ||
## 0.11.3 (2017-08-19) | ||
@@ -9,0 +14,0 @@ |
{ | ||
"name": "xlsx", | ||
"version": "0.11.4", | ||
"version": "0.11.5", | ||
"author": "sheetjs", | ||
@@ -49,2 +49,3 @@ "description": "Excel (XLSB/XLSX/XLS/XML) ODS and other spreadsheet format (CSV/DIF/DBF/SYLK) parser and writer", | ||
}, | ||
"alex": { "allow": ["wtf", "holes"] }, | ||
"homepage": "http://sheetjs.com/opensource", | ||
@@ -51,0 +52,0 @@ "bugs": { "url": "https://github.com/SheetJS/js-xlsx/issues" }, |
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */ | ||
importScripts('shim.js'); | ||
/* uncomment the next line for encoding support */ | ||
@@ -8,8 +9,8 @@ importScripts('dist/cpexcel.js'); | ||
onmessage = function (oEvent) { | ||
onmessage = function (evt) { | ||
var v; | ||
try { | ||
v = XLSX.read(oEvent.data.d, {type: oEvent.data.b}); | ||
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}); } | ||
}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6208508
60349
2403