(id: string)
| 10 | export const RUNNABLE = CATALOG.filter((p) => p.runnable); |
| 11 | |
| 12 | export function getCatalogProject(id: string): CatalogProject | undefined { |
| 13 | return CATALOG.find((p) => p.id === id); |
| 14 | } |
| 15 | |
| 16 | /** GitHub URL of a project's source folder in the repo. */ |
| 17 | export function catalogFolderUrl(p: CatalogProject): string { |
no outgoing calls
no test coverage detected