18 lines
535 B
JavaScript
18 lines
535 B
JavaScript
"use strict";
|
|
const serialize = require("w3c-xmlserializer");
|
|
const DOMException = require("domexception/webidl2js-wrapper");
|
|
const utils = require("../generated/utils");
|
|
|
|
exports.implementation = class XMLSerializerImpl {
|
|
constructor(globalObject) {
|
|
this._globalObject = globalObject;
|
|
}
|
|
|
|
serializeToString(root) {
|
|
try {
|
|
return serialize(utils.wrapperForImpl(root), { requireWellFormed: false });
|
|
} catch (e) {
|
|
throw DOMException.create(this._globalObject, [e.message, "InvalidStateError"]);
|
|
}
|
|
}
|
|
};
|