* Normalize issue title and body into a single lowercase string. * * @param {string} title * @param {string} body * @returns {string}
(title, body)
| 130 | * @returns {string} |
| 131 | */ |
| 132 | function normalizeText(title, body) { |
| 133 | return `${String(title || "")}\n\n${String(body || "")}`.toLowerCase(); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Infer candidate domain services from issue title and body text. |
no outgoing calls
no test coverage detected