(name: string)
| 91 | }; |
| 92 | |
| 93 | export const getIssueId = (name: string): number => { |
| 94 | return getNumberId(name, issueNamePrefix); |
| 95 | }; |
| 96 | |
| 97 | export const getProjectName = (name: string): string => { |
| 98 | const tokens = getNameParentTokens(name, [projectNamePrefix]); |
nothing calls this directly
no test coverage detected