(name: string)
| 14 | ] |
| 15 | |
| 16 | export function isPrActivitySubscriptionTool(name: string): boolean { |
| 17 | return PR_ACTIVITY_TOOL_SUFFIXES.some(suffix => name.endsWith(suffix)) |
| 18 | } |
| 19 | |
| 20 | // Dead code elimination: conditional imports for feature-gated modules |
| 21 | /* eslint-disable @typescript-eslint/no-require-imports */ |
no outgoing calls
no test coverage detected