Lines Matching refs:auth
73 this.auth = null;
161 // - '@' since this could cause parts of the hostname to be confused with auth
348 // auth portion cannot go past, or the last @ char is the decider.
358 this.auth = decodeURIComponent(rest.slice(0, atSign));
578 let auth = true;
595 if (options.auth != null) {
596 auth = Boolean(options.auth);
600 return bindingUrl.format(urlObject.href, fragment, unicode, search, auth);
624 let auth = this.auth || '';
625 if (auth) {
626 auth = encodeStr(auth, noEscapeAuth, hexTable);
627 auth += '@';
637 host = auth + this.host;
639 host = auth + (
802 result.auth = relative.auth;
844 result.auth = null;
857 if (result.host !== relative.host) result.auth = null;
862 if (result.hostname !== relative.hostname) result.auth = null;
883 // Occasionally the auth can get stuck only in host.
889 result.auth = authInHost.shift();
964 // Occasionally the auth can get stuck only in host.
970 result.auth = authInHost.shift();
993 result.auth = relative.auth || result.auth;