tldts 7.3.0 → 7.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -431,7 +431,10 @@ function extractHostname(url, urlIsValidHostname, validate = false) {
431
431
  else if (code < 48 || code > 57) {
432
432
  // < 64 and not a delimiter/dot/digit => only '-' (45) is a valid
433
433
  // host char here; everything else (space, %, !, etc.) is invalid.
434
- if (code !== 45) {
434
+ // A '-' must also not START a label (the byte right after a '.')
435
+ // mirrors is-valid.ts; the first label is covered by the first-char
436
+ // rule above. (RFC 1034 §3.5 / RFC 1035 §2.3.1 LDH.)
437
+ if (code !== 45 || vLastCode === 46 /* label-leading '-' */) {
435
438
  vValid = false;
436
439
  }
437
440
  }
@@ -711,8 +714,14 @@ function isValidHostname (hostname) {
711
714
  }
712
715
  lastDotIndex = i;
713
716
  }
714
- else if (!( /*@__INLINE__*/(isValidAscii(code) || code === 45 || code === 95))) {
715
- // Check if there is a forbidden character in the label
717
+ else if (
718
+ // A forbidden character in the label...
719
+ !( /*@__INLINE__*/(isValidAscii(code) || code === 45 || code === 95)) ||
720
+ // ...or a '-' starting a label (the byte right after a '.'). A label must
721
+ // not begin with a hyphen (RFC 1034 §3.5 / RFC 1035 §2.3.1 LDH, as amended
722
+ // by RFC 1123 §2.1; cf. UTS #46 CheckHyphens). The first label is covered by
723
+ // the leading-character guard above; mirrors the trailing-'-' rule below.
724
+ (code === 45 && lastCharCode === 46)) {
716
725
  return false;
717
726
  }
718
727
  lastCharCode = code;