()
| 12 | } |
| 13 | |
| 14 | async function getHighlightsToShow(): Promise<string[]> { |
| 15 | const hiddenHighlights = await getHiddenHighlights(); |
| 16 | return proposedHighlights.filter((h) => !hiddenHighlights.includes(h)); |
| 17 | } |
| 18 | |
| 19 | async function hideHighlights(keys: string[]): Promise<void> { |
| 20 | const hiddenHighlights = await getHiddenHighlights(); |
nothing calls this directly
no test coverage detected