/home/techb158/balavpn.abdallabala.com/node_modules/uri-js/dist/esnext
NameSizeModeActions
schemes/-0777rm
index.d.ts230666editdlrm
index.js5370666editdlrm
index.js.map7470666editdlrm
regexps-iri.d.ts970666editdlrm
regexps-iri.js1140666editdlrm
regexps-iri.js.map1920666editdlrm
regexps-uri.d.ts1600666editdlrm
regexps-uri.js78130666editdlrm
regexps-uri.js.map82830666editdlrm
uri.d.ts24460666editdlrm
uri.js201530666editdlrm
uri.js.map192190666editdlrm
util.d.ts3430666editdlrm
util.js11140666editdlrm
util.js.map17150666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/uri-js/dist/esnext/uri.d.ts (2446B)
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 { 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;