Initial commit: Torrent search and download application
This commit is contained in:
commit
e38be704ff
4313 changed files with 791544 additions and 0 deletions
26
node_modules/pac-resolver/dist/localHostOrDomainIs.d.ts
generated
vendored
Normal file
26
node_modules/pac-resolver/dist/localHostOrDomainIs.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* Is true if the hostname matches exactly the specified hostname, or if there is
|
||||
* no domain name part in the hostname, but the unqualified hostname matches.
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* ``` js
|
||||
* localHostOrDomainIs("www.netscape.com", "www.netscape.com")
|
||||
* // is true (exact match).
|
||||
*
|
||||
* localHostOrDomainIs("www", "www.netscape.com")
|
||||
* // is true (hostname match, domain not specified).
|
||||
*
|
||||
* localHostOrDomainIs("www.mcom.com", "www.netscape.com")
|
||||
* // is false (domain name mismatch).
|
||||
*
|
||||
* localHostOrDomainIs("home.netscape.com", "www.netscape.com")
|
||||
* // is false (hostname mismatch).
|
||||
* ```
|
||||
*
|
||||
* @param {String} host the hostname from the URL.
|
||||
* @param {String} hostdom fully qualified hostname to match against.
|
||||
* @return {Boolean}
|
||||
*/
|
||||
export default function localHostOrDomainIs(host: string, hostdom: string): boolean;
|
||||
//# sourceMappingURL=localHostOrDomainIs.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue