Comparing version 1.4.12 to 1.4.13
@@ -14,2 +14,3 @@ /** | ||
var StringXform = require('../simple/string-xform'); | ||
var IntegerXform = require('../simple/integer-xform'); | ||
@@ -28,3 +29,3 @@ var CoreXform = module.exports = function () { | ||
'cp:lastPrinted': new DateXform({ tag: 'cp:lastPrinted', format: CoreXform.DateFormat }), | ||
'cp:revision': new DateXform({ tag: 'cp:revision' }), | ||
'cp:revision': new IntegerXform({ tag: 'cp:revision' }), | ||
'cp:version': new StringXform({ tag: 'cp:version' }), | ||
@@ -31,0 +32,0 @@ 'cp:contentStatus': new StringXform({ tag: 'cp:contentStatus' }), |
@@ -17,3 +17,7 @@ /** | ||
this._format = options.format || function (dt) { | ||
return dt.toISOString(); | ||
try { | ||
return dt.toISOString(); | ||
} catch (e) { | ||
return ''; | ||
} | ||
}; | ||
@@ -20,0 +24,0 @@ this._parse = options.parse || function (str) { |
{ | ||
"name": "exceljs", | ||
"version": "1.4.12", | ||
"version": "1.4.13", | ||
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.", | ||
@@ -5,0 +5,0 @@ "private": false, |
Sorry, the diff of this file is not supported yet
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 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
3200645
53325
1839