Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /usr/share/nodejs/jsdom/lib/jsdom/living/domparsing/ drwxr-xr-x |
Viewing file: Select action/file-type: "use strict"; const nodeTypes = require("../node-type"); const { domSymbolTree } = require("../helpers/internal-constants"); // Serialization only requires a subset of the tree adapter interface. // Tree traversing exports.getFirstChild = node => node.firstChild; exports.getChildNodes = node => node.childNodesForSerializing || domSymbolTree.childrenToArray(node); exports.getParentNode = node => node.parentNode; exports.getAttrList = element => { const attributeList = [...element._attributeList]; if (element._isValue && attributeList.every(attr => attr.name !== "is")) { attributeList.unshift({ name: "is", namespace: null, prefix: null, value: element._isValue }); } return attributeList; }; // Node data exports.getTagName = element => element._qualifiedName; // https://github.com/inikulin/parse5/issues/231 exports.getNamespaceURI = element => element.namespaceURI; exports.getTextNodeContent = exports.getCommentNodeContent = node => node.data; exports.getDocumentTypeNodeName = node => node.name; exports.getDocumentTypeNodePublicId = node => node.publicId; exports.getDocumentTypeNodeSystemId = node => node.systemId; exports.getTemplateContent = templateElement => templateElement._templateContents; exports.getDocumentMode = document => document._mode; // Node types exports.isTextNode = node => node.nodeType === nodeTypes.TEXT_NODE; exports.isCommentNode = node => node.nodeType === nodeTypes.COMMENT_NODE; exports.isDocumentTypeNode = node => node.nodeType === nodeTypes.DOCUMENT_TYPE_NODE; exports.isElementNode = node => node.nodeType === nodeTypes.ELEMENT_NODE; // Source code location exports.setNodeSourceCodeLocation = (node, location) => { node.sourceCodeLocation = location; }; exports.getNodeSourceCodeLocation = node => node.sourceCodeLocation; exports.updateNodeSourceCodeLocation = (node, endLocation) => { Object.assign(node.sourceCodeLocation, endLocation); }; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]-- |