Skip to content

Commit a06c4b4

Browse files
authored
Merge pull request #85 from jmaister/fix-update-deps
Fix update deps
2 parents b14cae8 + 0a6203e commit a06c4b4

File tree

5 files changed

+8984
-5335
lines changed

5 files changed

+8984
-5335
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ Check my blog page for testing:
2424

2525
# Revision history:
2626

27-
### 3.1.0 (in progress)
27+
### 3.2.0
28+
29+
* Update npm dependencies to fix vulnerabilities
30+
31+
### 3.1.0
2832

2933
* Fix old API for base64 and escaping problem.
3034

dist/excellentexport.js

+2-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

excellentexport.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const ExcellentExport = function() {
4444
});
4545
};
4646

47-
const version = "3.1.0";
47+
const version = "3.2.0";
4848
const template = {excel: '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><meta name=ProgId content=Excel.Sheet> <meta name=Generator content="Microsoft Excel 11"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>'};
4949
let csvDelimiter = ",";
5050
let csvNewLine = "\r\n";

0 commit comments

Comments
 (0)