(count: number, singular: string, pluralForm = `${singular}s`)
| 610 | } |
| 611 | |
| 612 | function plural(count: number, singular: string, pluralForm = `${singular}s`) { |
| 613 | return `${count} ${count === 1 ? singular : pluralForm}`; |
| 614 | } |
| 615 | |
| 616 | function Header(props: { active: ActiveSection }) { |
| 617 | return ( |
no outgoing calls
no test coverage detected