(svc)
| 151 | const hits = new Set(); |
| 152 | |
| 153 | function normalizeService(svc) { |
| 154 | const s = String(svc || "").toLowerCase(); |
| 155 | if (s === "docs") return "doc"; |
| 156 | return s; |
| 157 | } |
| 158 | |
| 159 | // 1) Explicit domain labels in text: domain/<service> |
| 160 | const explicit = new RegExp(`\\bdomain\\/(${DOMAIN_REGEX_ALTERNATION})\\b`, "gi"); |
no outgoing calls
no test coverage detected