Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.3.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
node_modules /
min-document /
Delete
Unzip
Name
Size
Permission
Date
Action
event
[ DIR ]
drwxr-xr-x
2021-05-07 15:09
test
[ DIR ]
drwxr-xr-x
2021-05-07 15:09
.jshintrc
545
B
-rw-r--r--
2015-08-03 18:33
.npmignore
148
B
-rw-r--r--
2015-08-03 18:33
.testem.json
312
B
-rw-r--r--
2015-08-03 18:33
.travis.yml
81
B
-rw-r--r--
2015-08-03 18:33
CONTRIBUTION.md
2.36
KB
-rw-r--r--
2015-08-03 18:33
LICENCE
1.03
KB
-rw-r--r--
2015-08-03 18:33
README.md
856
B
-rw-r--r--
2015-08-03 18:33
docs.mli
3.75
KB
-rw-r--r--
2015-08-03 18:33
document.js
2.07
KB
-rw-r--r--
2016-01-15 02:30
dom-comment.js
426
B
-rw-r--r--
2015-08-03 18:33
dom-element.js
5.86
KB
-rw-r--r--
2016-09-21 22:55
dom-fragment.js
876
B
-rw-r--r--
2015-08-03 18:33
dom-text.js
720
B
-rw-r--r--
2016-08-03 03:11
event.js
293
B
-rw-r--r--
2015-08-03 18:33
index.js
75
B
-rw-r--r--
2015-08-03 18:33
package.json
2.31
KB
-rw-r--r--
2021-05-07 15:09
serialize.js
3.49
KB
-rw-r--r--
2016-09-21 22:55
Save
Rename
module.exports = serializeNode var voidElements = ["area","base","br","col","embed","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"]; function serializeNode(node) { switch (node.nodeType) { case 3: return escapeText(node.data) case 8: return "<!--" + node.data + "-->" default: return serializeElement(node) } } function serializeElement(elem) { var strings = [] var tagname = elem.tagName if (elem.namespaceURI === "http://www.w3.org/1999/xhtml") { tagname = tagname.toLowerCase() } strings.push("<" + tagname + properties(elem) + datasetify(elem)) if (voidElements.indexOf(tagname) > -1) { strings.push(" />") } else { strings.push(">") if (elem.childNodes.length) { strings.push.apply(strings, elem.childNodes.map(serializeNode)) } else if (elem.textContent || elem.innerText) { strings.push(escapeText(elem.textContent || elem.innerText)) } else if (elem.innerHTML) { strings.push(elem.innerHTML) } strings.push("</" + tagname + ">") } return strings.join("") } function isProperty(elem, key) { var type = typeof elem[key] if (key === "style" && Object.keys(elem.style).length > 0) { return true } return elem.hasOwnProperty(key) && (type === "string" || type === "boolean" || type === "number") && key !== "nodeName" && key !== "className" && key !== "tagName" && key !== "textContent" && key !== "innerText" && key !== "namespaceURI" && key !== "innerHTML" } function stylify(styles) { if (typeof styles === 'string') return styles var attr = "" Object.keys(styles).forEach(function (key) { var value = styles[key] key = key.replace(/[A-Z]/g, function(c) { return "-" + c.toLowerCase(); }) attr += key + ":" + value + ";" }) return attr } function datasetify(elem) { var ds = elem.dataset var props = [] for (var key in ds) { props.push({ name: "data-" + key, value: ds[key] }) } return props.length ? stringify(props) : "" } function stringify(list) { var attributes = [] list.forEach(function (tuple) { var name = tuple.name var value = tuple.value if (name === "style") { value = stylify(value) } attributes.push(name + "=" + "\"" + escapeAttributeValue(value) + "\"") }) return attributes.length ? " " + attributes.join(" ") : "" } function properties(elem) { var props = [] for (var key in elem) { if (isProperty(elem, key)) { props.push({ name: key, value: elem[key] }) } } for (var ns in elem._attributes) { for (var attribute in elem._attributes[ns]) { var prop = elem._attributes[ns][attribute] var name = (prop.prefix ? prop.prefix + ":" : "") + attribute props.push({ name: name, value: prop.value }) } } if (elem.className) { props.push({ name: "class", value: elem.className }) } return props.length ? stringify(props) : "" } function escapeText(s) { var str = ''; if (typeof(s) === 'string') { str = s; } else if (s) { str = s.toString(); } return str .replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") } function escapeAttributeValue(str) { return escapeText(str).replace(/"/g, """) }