BLUE
PHP 7.4.33
Path:
/var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/min-document
Run
Logout
Edit File
Size: 2.07 KB
Close
/var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/min-document/document.js
Text
Base64
var domWalk = require("dom-walk") var Comment = require("./dom-comment.js") var DOMText = require("./dom-text.js") var DOMElement = require("./dom-element.js") var DocumentFragment = require("./dom-fragment.js") var Event = require("./event.js") var dispatchEvent = require("./event/dispatch-event.js") var addEventListener = require("./event/add-event-listener.js") var removeEventListener = require("./event/remove-event-listener.js") module.exports = Document; function Document() { if (!(this instanceof Document)) { return new Document(); } this.head = this.createElement("head") this.body = this.createElement("body") this.documentElement = this.createElement("html") this.documentElement.appendChild(this.head) this.documentElement.appendChild(this.body) this.childNodes = [this.documentElement] this.nodeType = 9 } var proto = Document.prototype; proto.createTextNode = function createTextNode(value) { return new DOMText(value, this) } proto.createElementNS = function createElementNS(namespace, tagName) { var ns = namespace === null ? null : String(namespace) return new DOMElement(tagName, this, ns) } proto.createElement = function createElement(tagName) { return new DOMElement(tagName, this) } proto.createDocumentFragment = function createDocumentFragment() { return new DocumentFragment(this) } proto.createEvent = function createEvent(family) { return new Event(family) } proto.createComment = function createComment(data) { return new Comment(data, this) } proto.getElementById = function getElementById(id) { id = String(id) var result = domWalk(this.childNodes, function (node) { if (String(node.id) === id) { return node } }) return result || null } proto.getElementsByClassName = DOMElement.prototype.getElementsByClassName proto.getElementsByTagName = DOMElement.prototype.getElementsByTagName proto.contains = DOMElement.prototype.contains proto.removeEventListener = removeEventListener proto.addEventListener = addEventListener proto.dispatchEvent = dispatchEvent
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 2 × Files: 16
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
event
DIR
-
drwxr-xr-x
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
test
DIR
-
drwxr-xr-x
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.jshintrc
545 B
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.testem.json
312 B
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.travis.yml
81 B
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
CONTRIBUTION.md
2.36 KB
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
docs.mli
3.75 KB
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
document.js
2.07 KB
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
dom-comment.js
426 B
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
dom-element.js
6.11 KB
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
dom-fragment.js
876 B
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
dom-text.js
720 B
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
event.js
293 B
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.js
75 B
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
LICENCE
1.03 KB
lrw-r--r--
2026-04-28 09:11:39
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
package.json
1.40 KB
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
README.md
856 B
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
serialize.js
3.49 KB
lrw-r--r--
2026-04-28 09:11:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).