Closed
Description
When creating dynamic documents it's really useful to be able to import a document containing only child elements. Consider:
import { XMLElementOrXMLNode, create, begin } from "xmlbuilder";
const doc = begin();
const boldDoc = create('b');
boldDoc.text('Hello World');
doc.importDocument(boldDoc);
const main = create('p');
main.importDocument(doc);
console.log(main.toString());
I would expect this to result in XML document
<p><b>Hello World</b></p>
Instead I get an error: Cannot read property 'clone' of undefined
(/node_modules/xmlbuilder/lib/XMLNode.js:569:32
).
doc
is not undefined:
console.log(doc.toString()); // <b>Hello World</b>
However doc.root()
returns undefined, causing the issue.
Not sure if this is a bug or not, but reading the docs this is not what I was expecting :/