(filePath)
| 277 | } |
| 278 | |
| 279 | function skillDomainForPath(filePath) { |
| 280 | const parts = normalizePath(filePath).split("/"); |
| 281 | return parts.length >= 2 && parts[0] === "skills" && parts[1].startsWith("lark-") |
| 282 | ? parts[1].slice("lark-".length) |
| 283 | : ""; |
| 284 | } |
| 285 | |
| 286 | // Get business domain label based on CODEOWNERS path mapping |
| 287 | function getBusinessDomain(filePath) { |
no test coverage detected