frontend/.pnpm-store/v3/files/c5/36a47ea76b37ed4660428b4c076581972bc7c2de41b9d24011f7eb20fef70133882e9fcdc937d96aa64b5f953be5ba73ee51258a070ab4213d2949be8d0ce2

26 lines
845 B
Plaintext

/**
* 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;