Update Application property

Update Workbook property only if it is not already set in the Workbook object.
This commit is contained in:
purusothsv13 2022-05-24 11:01:50 +05:30 committed by GitHub
parent 2022f7f4b0
commit 3f9ef14a35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
xlsx.js generated

@ -5571,7 +5571,7 @@ function parse_ext_props(data, p, opts) {
function write_ext_props(cp) {
var o = [], W = writextag;
if(!cp) cp = {};
cp.Application = "SheetJS";
if(!cp.Application) cp.Application = "SheetJS";
o[o.length] = (XML_HEADER);
o[o.length] = (writextag('Properties', null, {
'xmlns': XMLNS.EXT_PROPS,