({
projectId,
project,
}: {
projectId?: string;
project?: string;
})
| 13 | * @returns The projectId |
| 14 | */ |
| 15 | export function getProjectId({ |
| 16 | projectId, |
| 17 | project, |
| 18 | }: { |
| 19 | projectId?: string; |
| 20 | project?: string; |
| 21 | }): string | undefined { |
| 22 | return projectId || project; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Tries to determine the correct projectId given current |
no outgoing calls
no test coverage detected
searching dependent graphs…