(name: string)
| 583 | } |
| 584 | |
| 585 | private formatDisplayName(name: string): string { |
| 586 | return name |
| 587 | .split('-') |
| 588 | .map((word) => word.charAt(0).toUpperCase() + word.slice(1)) |
| 589 | .join(' '); |
| 590 | } |
| 591 | |
| 592 | private extractRequirements(content: string): RequirementDetail[] { |
| 593 | const requirements: RequirementDetail[] = []; |