Results 4 issues of lengerrong

preserveChildrenOrder (default false): Modifies the behavior of explicitChildren so that the value of the "children" property becomes an ordered array. When this is true, every node will also get a...

given below xml: ``` Happy Work Play ``` if we parse with ```{compact: false}``` option, we will get none compact JS object: ``` { declaration: { attributes: { version: '1.0',...

TypeError: zip.files.hasOwnProperty is not a function at PowerPointFactory.loadFromRawFileData (node_modules/nodejs-pptx/lib/factories/index.js:42:27) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:95:5) at async Presentation.loadExistingPPTX (node_modules/nodejs-pptx/lib/presentation.js:99:13) at async Composer.load (node_modules/nodejs-pptx/lib/composer.js:15:9)

test code ``` let pptx = new PPTX.Composer() await pptx.load(__dirname + '/../../templates/test.pptx') const tmpPPTX = '/tmp/worship' + Math.random() + '.pptx' await pptx.save(tmpPPTX) ``` In the test.pptx, I have a slide...