Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
uri-js /
dist /
esnext /
Delete
Unzip
Name
Size
Permission
Date
Action
schemes
[ DIR ]
drwxr-xr-x
2024-07-09 20:45
index.d.ts
23
B
-rw-r--r--
2022-10-27 13:09
index.js
537
B
-rw-r--r--
2022-10-27 13:09
index.js.map
747
B
-rw-r--r--
2022-10-27 13:09
regexps-iri.d.ts
97
B
-rw-r--r--
2022-10-27 13:09
regexps-iri.js
114
B
-rw-r--r--
2022-10-27 13:09
regexps-iri.js.map
192
B
-rw-r--r--
2022-10-27 13:09
regexps-uri.d.ts
160
B
-rw-r--r--
2022-10-27 13:09
regexps-uri.js
7.63
KB
-rw-r--r--
2022-10-27 13:09
regexps-uri.js.map
8.1
KB
-rw-r--r--
2022-10-27 13:09
uri.d.ts
2.63
KB
-rw-r--r--
2022-10-27 13:09
uri.js
19.68
KB
-rw-r--r--
2022-10-27 13:09
uri.js.map
18.92
KB
-rw-r--r--
2022-10-27 13:09
util.d.ts
343
B
-rw-r--r--
2022-10-27 13:09
util.js
1.09
KB
-rw-r--r--
2022-10-27 13:09
util.js.map
1.72
KB
-rw-r--r--
2022-10-27 13:09
Save
Rename
/** * URI.js * * @fileoverview An RFC 3986 compliant, scheme extendable URI parsing/validating/resolving library for JavaScript. * @author <a href="mailto:gary.court@gmail.com">Gary Court</a> * @see http://github.com/garycourt/uri-js */ export interface URIComponents { scheme?: string; userinfo?: string; host?: string; port?: number | string; path?: string; query?: string; fragment?: string; reference?: string; error?: string; } export interface URIOptions { scheme?: string; reference?: string; tolerant?: boolean; absolutePath?: boolean; iri?: boolean; unicodeSupport?: boolean; domainHost?: boolean; } export interface URISchemeHandler<Components extends URIComponents = URIComponents, Options extends URIOptions = URIOptions, ParentComponents extends URIComponents = URIComponents> { scheme: string; parse(components: ParentComponents, options: Options): Components; serialize(components: Components, options: Options): ParentComponents; unicodeSupport?: boolean; domainHost?: boolean; absolutePath?: boolean; } export interface URIRegExps { NOT_SCHEME: RegExp; NOT_USERINFO: RegExp; NOT_HOST: RegExp; NOT_PATH: RegExp; NOT_PATH_NOSCHEME: RegExp; NOT_QUERY: RegExp; NOT_FRAGMENT: RegExp; ESCAPE: RegExp; UNRESERVED: RegExp; OTHER_CHARS: RegExp; PCT_ENCODED: RegExp; IPV4ADDRESS: RegExp; IPV6ADDRESS: RegExp; } export declare const SCHEMES: { [scheme: string]: URISchemeHandler; }; export declare function pctEncChar(chr: string): string; export declare function pctDecChars(str: string): string; export declare function parse(uriString: string, options?: URIOptions): URIComponents; export declare function removeDotSegments(input: string): string; export declare function serialize(components: URIComponents, options?: URIOptions): string; export declare function resolveComponents(base: URIComponents, relative: URIComponents, options?: URIOptions, skipNormalization?: boolean): URIComponents; export declare function resolve(baseURI: string, relativeURI: string, options?: URIOptions): string; export declare function normalize(uri: string, options?: URIOptions): string; export declare function normalize(uri: URIComponents, options?: URIOptions): URIComponents; export declare function equal(uriA: string, uriB: string, options?: URIOptions): boolean; export declare function equal(uriA: URIComponents, uriB: URIComponents, options?: URIOptions): boolean; export declare function escapeComponent(str: string, options?: URIOptions): string; export declare function unescapeComponent(str: string, options?: URIOptions): string;