MCPcopy Create free account
hub / github.com/TruthHun/BookStack / XMLDocument

Function XMLDocument

static/word2md/mammoth.browser.js:30633–30643  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

30631 extend(XMLDocument, superClass);
30632
30633 function XMLDocument(options) {
30634 XMLDocument.__super__.constructor.call(this, null);
30635 this.name = "?xml";
30636 options || (options = {});
30637 if (!options.writer) {
30638 options.writer = new XMLStringWriter();
30639 }
30640 this.options = options;
30641 this.stringify = new XMLStringifier(options);
30642 this.isDocument = true;
30643 }
30644
30645 XMLDocument.prototype.end = function(writer) {
30646 var writerOptions;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected