{"version":3,"file":"domhandler-CmWkWTUx.js","sources":["../../node_modules/domhandler/lib/node.js","../../node_modules/domhandler/lib/index.js"],"sourcesContent":["\"use strict\";\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.cloneNode = exports.hasChildren = exports.isDocument = exports.isDirective = exports.isComment = exports.isText = exports.isCDATA = exports.isTag = exports.Element = exports.Document = exports.CDATA = exports.NodeWithChildren = exports.ProcessingInstruction = exports.Comment = exports.Text = exports.DataNode = exports.Node = void 0;\nvar domelementtype_1 = require(\"domelementtype\");\n/**\n * This object will be used as the prototype for Nodes when creating a\n * DOM-Level-1-compliant structure.\n */\nvar Node = /** @class */ (function () {\n function Node() {\n /** Parent of the node */\n this.parent = null;\n /** Previous sibling */\n this.prev = null;\n /** Next sibling */\n this.next = null;\n /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */\n this.startIndex = null;\n /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */\n this.endIndex = null;\n }\n Object.defineProperty(Node.prototype, \"parentNode\", {\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.parent;\n },\n set: function (parent) {\n this.parent = parent;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Node.prototype, \"previousSibling\", {\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.prev;\n },\n set: function (prev) {\n this.prev = prev;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Node.prototype, \"nextSibling\", {\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.next;\n },\n set: function (next) {\n this.next = next;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Clone this node, and optionally its children.\n *\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\n Node.prototype.cloneNode = function (recursive) {\n if (recursive === void 0) { recursive = false; }\n return cloneNode(this, recursive);\n };\n return Node;\n}());\nexports.Node = Node;\n/**\n * A node that contains some data.\n */\nvar DataNode = /** @class */ (function (_super) {\n __extends(DataNode, _super);\n /**\n * @param data The content of the data node\n */\n function DataNode(data) {\n var _this = _super.call(this) || this;\n _this.data = data;\n return _this;\n }\n Object.defineProperty(DataNode.prototype, \"nodeValue\", {\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.data;\n },\n set: function (data) {\n this.data = data;\n },\n enumerable: false,\n configurable: true\n });\n return DataNode;\n}(Node));\nexports.DataNode = DataNode;\n/**\n * Text within the document.\n */\nvar Text = /** @class */ (function (_super) {\n __extends(Text, _super);\n function Text() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.type = domelementtype_1.ElementType.Text;\n return _this;\n }\n Object.defineProperty(Text.prototype, \"nodeType\", {\n get: function () {\n return 3;\n },\n enumerable: false,\n configurable: true\n });\n return Text;\n}(DataNode));\nexports.Text = Text;\n/**\n * Comments within the document.\n */\nvar Comment = /** @class */ (function (_super) {\n __extends(Comment, _super);\n function Comment() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.type = domelementtype_1.ElementType.Comment;\n return _this;\n }\n Object.defineProperty(Comment.prototype, \"nodeType\", {\n get: function () {\n return 8;\n },\n enumerable: false,\n configurable: true\n });\n return Comment;\n}(DataNode));\nexports.Comment = Comment;\n/**\n * Processing instructions, including doc types.\n */\nvar ProcessingInstruction = /** @class */ (function (_super) {\n __extends(ProcessingInstruction, _super);\n function ProcessingInstruction(name, data) {\n var _this = _super.call(this, data) || this;\n _this.name = name;\n _this.type = domelementtype_1.ElementType.Directive;\n return _this;\n }\n Object.defineProperty(ProcessingInstruction.prototype, \"nodeType\", {\n get: function () {\n return 1;\n },\n enumerable: false,\n configurable: true\n });\n return ProcessingInstruction;\n}(DataNode));\nexports.ProcessingInstruction = ProcessingInstruction;\n/**\n * A `Node` that can have children.\n */\nvar NodeWithChildren = /** @class */ (function (_super) {\n __extends(NodeWithChildren, _super);\n /**\n * @param children Children of the node. Only certain node types can have children.\n */\n function NodeWithChildren(children) {\n var _this = _super.call(this) || this;\n _this.children = children;\n return _this;\n }\n Object.defineProperty(NodeWithChildren.prototype, \"firstChild\", {\n // Aliases\n /** First child of the node. */\n get: function () {\n var _a;\n return (_a = this.children[0]) !== null && _a !== void 0 ? _a : null;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(NodeWithChildren.prototype, \"lastChild\", {\n /** Last child of the node. */\n get: function () {\n return this.children.length > 0\n ? this.children[this.children.length - 1]\n : null;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(NodeWithChildren.prototype, \"childNodes\", {\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.children;\n },\n set: function (children) {\n this.children = children;\n },\n enumerable: false,\n configurable: true\n });\n return NodeWithChildren;\n}(Node));\nexports.NodeWithChildren = NodeWithChildren;\nvar CDATA = /** @class */ (function (_super) {\n __extends(CDATA, _super);\n function CDATA() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.type = domelementtype_1.ElementType.CDATA;\n return _this;\n }\n Object.defineProperty(CDATA.prototype, \"nodeType\", {\n get: function () {\n return 4;\n },\n enumerable: false,\n configurable: true\n });\n return CDATA;\n}(NodeWithChildren));\nexports.CDATA = CDATA;\n/**\n * The root node of the document.\n */\nvar Document = /** @class */ (function (_super) {\n __extends(Document, _super);\n function Document() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.type = domelementtype_1.ElementType.Root;\n return _this;\n }\n Object.defineProperty(Document.prototype, \"nodeType\", {\n get: function () {\n return 9;\n },\n enumerable: false,\n configurable: true\n });\n return Document;\n}(NodeWithChildren));\nexports.Document = Document;\n/**\n * An element within the DOM.\n */\nvar Element = /** @class */ (function (_super) {\n __extends(Element, _super);\n /**\n * @param name Name of the tag, eg. `div`, `span`.\n * @param attribs Object mapping attribute names to attribute values.\n * @param children Children of the node.\n */\n function Element(name, attribs, children, type) {\n if (children === void 0) { children = []; }\n if (type === void 0) { type = name === \"script\"\n ? domelementtype_1.ElementType.Script\n : name === \"style\"\n ? domelementtype_1.ElementType.Style\n : domelementtype_1.ElementType.Tag; }\n var _this = _super.call(this, children) || this;\n _this.name = name;\n _this.attribs = attribs;\n _this.type = type;\n return _this;\n }\n Object.defineProperty(Element.prototype, \"nodeType\", {\n get: function () {\n return 1;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Element.prototype, \"tagName\", {\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function () {\n return this.name;\n },\n set: function (name) {\n this.name = name;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Element.prototype, \"attributes\", {\n get: function () {\n var _this = this;\n return Object.keys(this.attribs).map(function (name) {\n var _a, _b;\n return ({\n name: name,\n value: _this.attribs[name],\n namespace: (_a = _this[\"x-attribsNamespace\"]) === null || _a === void 0 ? void 0 : _a[name],\n prefix: (_b = _this[\"x-attribsPrefix\"]) === null || _b === void 0 ? void 0 : _b[name],\n });\n });\n },\n enumerable: false,\n configurable: true\n });\n return Element;\n}(NodeWithChildren));\nexports.Element = Element;\n/**\n * @param node Node to check.\n * @returns `true` if the node is a `Element`, `false` otherwise.\n */\nfunction isTag(node) {\n return (0, domelementtype_1.isTag)(node);\n}\nexports.isTag = isTag;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `CDATA`, `false` otherwise.\n */\nfunction isCDATA(node) {\n return node.type === domelementtype_1.ElementType.CDATA;\n}\nexports.isCDATA = isCDATA;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `Text`, `false` otherwise.\n */\nfunction isText(node) {\n return node.type === domelementtype_1.ElementType.Text;\n}\nexports.isText = isText;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `Comment`, `false` otherwise.\n */\nfunction isComment(node) {\n return node.type === domelementtype_1.ElementType.Comment;\n}\nexports.isComment = isComment;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise.\n */\nfunction isDirective(node) {\n return node.type === domelementtype_1.ElementType.Directive;\n}\nexports.isDirective = isDirective;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise.\n */\nfunction isDocument(node) {\n return node.type === domelementtype_1.ElementType.Root;\n}\nexports.isDocument = isDocument;\n/**\n * @param node Node to check.\n * @returns `true` if the node has children, `false` otherwise.\n */\nfunction hasChildren(node) {\n return Object.prototype.hasOwnProperty.call(node, \"children\");\n}\nexports.hasChildren = hasChildren;\n/**\n * Clone a node, and optionally its children.\n *\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\nfunction cloneNode(node, recursive) {\n if (recursive === void 0) { recursive = false; }\n var result;\n if (isText(node)) {\n result = new Text(node.data);\n }\n else if (isComment(node)) {\n result = new Comment(node.data);\n }\n else if (isTag(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_1 = new Element(node.name, __assign({}, node.attribs), children);\n children.forEach(function (child) { return (child.parent = clone_1); });\n if (node.namespace != null) {\n clone_1.namespace = node.namespace;\n }\n if (node[\"x-attribsNamespace\"]) {\n clone_1[\"x-attribsNamespace\"] = __assign({}, node[\"x-attribsNamespace\"]);\n }\n if (node[\"x-attribsPrefix\"]) {\n clone_1[\"x-attribsPrefix\"] = __assign({}, node[\"x-attribsPrefix\"]);\n }\n result = clone_1;\n }\n else if (isCDATA(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_2 = new CDATA(children);\n children.forEach(function (child) { return (child.parent = clone_2); });\n result = clone_2;\n }\n else if (isDocument(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_3 = new Document(children);\n children.forEach(function (child) { return (child.parent = clone_3); });\n if (node[\"x-mode\"]) {\n clone_3[\"x-mode\"] = node[\"x-mode\"];\n }\n result = clone_3;\n }\n else if (isDirective(node)) {\n var instruction = new ProcessingInstruction(node.name, node.data);\n if (node[\"x-name\"] != null) {\n instruction[\"x-name\"] = node[\"x-name\"];\n instruction[\"x-publicId\"] = node[\"x-publicId\"];\n instruction[\"x-systemId\"] = node[\"x-systemId\"];\n }\n result = instruction;\n }\n else {\n throw new Error(\"Not implemented yet: \".concat(node.type));\n }\n result.startIndex = node.startIndex;\n result.endIndex = node.endIndex;\n if (node.sourceCodeLocation != null) {\n result.sourceCodeLocation = node.sourceCodeLocation;\n }\n return result;\n}\nexports.cloneNode = cloneNode;\nfunction cloneChildren(childs) {\n var children = childs.map(function (child) { return cloneNode(child, true); });\n for (var i = 1; i < children.length; i++) {\n children[i].prev = children[i - 1];\n children[i - 1].next = children[i];\n }\n return children;\n}\n","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.DomHandler = void 0;\nvar domelementtype_1 = require(\"domelementtype\");\nvar node_js_1 = require(\"./node.js\");\n__exportStar(require(\"./node.js\"), exports);\n// Default options\nvar defaultOpts = {\n withStartIndices: false,\n withEndIndices: false,\n xmlMode: false,\n};\nvar DomHandler = /** @class */ (function () {\n /**\n * @param callback Called once parsing has completed.\n * @param options Settings for the handler.\n * @param elementCB Callback whenever a tag is closed.\n */\n function DomHandler(callback, options, elementCB) {\n /** The elements of the DOM */\n this.dom = [];\n /** The root element for the DOM */\n this.root = new node_js_1.Document(this.dom);\n /** Indicated whether parsing has been completed. */\n this.done = false;\n /** Stack of open tags. */\n this.tagStack = [this.root];\n /** A data node that is still being written to. */\n this.lastNode = null;\n /** Reference to the parser instance. Used for location information. */\n this.parser = null;\n // Make it possible to skip arguments, for backwards-compatibility\n if (typeof options === \"function\") {\n elementCB = options;\n options = defaultOpts;\n }\n if (typeof callback === \"object\") {\n options = callback;\n callback = undefined;\n }\n this.callback = callback !== null && callback !== void 0 ? callback : null;\n this.options = options !== null && options !== void 0 ? options : defaultOpts;\n this.elementCB = elementCB !== null && elementCB !== void 0 ? elementCB : null;\n }\n DomHandler.prototype.onparserinit = function (parser) {\n this.parser = parser;\n };\n // Resets the handler back to starting state\n DomHandler.prototype.onreset = function () {\n this.dom = [];\n this.root = new node_js_1.Document(this.dom);\n this.done = false;\n this.tagStack = [this.root];\n this.lastNode = null;\n this.parser = null;\n };\n // Signals the handler that parsing is done\n DomHandler.prototype.onend = function () {\n if (this.done)\n return;\n this.done = true;\n this.parser = null;\n this.handleCallback(null);\n };\n DomHandler.prototype.onerror = function (error) {\n this.handleCallback(error);\n };\n DomHandler.prototype.onclosetag = function () {\n this.lastNode = null;\n var elem = this.tagStack.pop();\n if (this.options.withEndIndices) {\n elem.endIndex = this.parser.endIndex;\n }\n if (this.elementCB)\n this.elementCB(elem);\n };\n DomHandler.prototype.onopentag = function (name, attribs) {\n var type = this.options.xmlMode ? domelementtype_1.ElementType.Tag : undefined;\n var element = new node_js_1.Element(name, attribs, undefined, type);\n this.addNode(element);\n this.tagStack.push(element);\n };\n DomHandler.prototype.ontext = function (data) {\n var lastNode = this.lastNode;\n if (lastNode && lastNode.type === domelementtype_1.ElementType.Text) {\n lastNode.data += data;\n if (this.options.withEndIndices) {\n lastNode.endIndex = this.parser.endIndex;\n }\n }\n else {\n var node = new node_js_1.Text(data);\n this.addNode(node);\n this.lastNode = node;\n }\n };\n DomHandler.prototype.oncomment = function (data) {\n if (this.lastNode && this.lastNode.type === domelementtype_1.ElementType.Comment) {\n this.lastNode.data += data;\n return;\n }\n var node = new node_js_1.Comment(data);\n this.addNode(node);\n this.lastNode = node;\n };\n DomHandler.prototype.oncommentend = function () {\n this.lastNode = null;\n };\n DomHandler.prototype.oncdatastart = function () {\n var text = new node_js_1.Text(\"\");\n var node = new node_js_1.CDATA([text]);\n this.addNode(node);\n text.parent = node;\n this.lastNode = text;\n };\n DomHandler.prototype.oncdataend = function () {\n this.lastNode = null;\n };\n DomHandler.prototype.onprocessinginstruction = function (name, data) {\n var node = new node_js_1.ProcessingInstruction(name, data);\n this.addNode(node);\n };\n DomHandler.prototype.handleCallback = function (error) {\n if (typeof this.callback === \"function\") {\n this.callback(error, this.dom);\n }\n else if (error) {\n throw error;\n }\n };\n DomHandler.prototype.addNode = function (node) {\n var parent = this.tagStack[this.tagStack.length - 1];\n var previousSibling = parent.children[parent.children.length - 1];\n if (this.options.withStartIndices) {\n node.startIndex = this.parser.startIndex;\n }\n if (this.options.withEndIndices) {\n node.endIndex = this.parser.endIndex;\n }\n parent.children.push(node);\n if (previousSibling) {\n node.prev = previousSibling;\n previousSibling.next = node;\n }\n node.parent = parent;\n this.lastNode = null;\n };\n return DomHandler;\n}());\nexports.DomHandler = DomHandler;\nexports.default = DomHandler;\n"],"names":["__extends","this","extendStatics","d","b","p","__","__assign","t","s","i","n","node","domelementtype_1","require$$0","Node","parent","prev","next","recursive","cloneNode","DataNode","_super","data","_this","Text","Comment","ProcessingInstruction","name","NodeWithChildren","children","_a","CDATA","Document","Element","attribs","type","_b","isTag","isCDATA","isText","isComment","isDirective","isDocument","hasChildren","result","cloneChildren","clone_1","child","clone_2","clone_3","instruction","childs","__createBinding","o","m","k","k2","desc","__exportStar","exports","node_js_1","require$$1","defaultOpts","DomHandler","callback","options","elementCB","parser","error","elem","element","lastNode","text","previousSibling"],"mappings":"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","x_google_ignoreList":[0,1]}