(name: string)
| 65 | }; |
| 66 | |
| 67 | export const getWorkspaceId = (name: string): string => { |
| 68 | const tokens = getNameParentTokens(name, [workspaceNamePrefix]); |
| 69 | return tokens[0]; |
| 70 | }; |
| 71 | |
| 72 | export const getEnvironmentId = (name: string): string => { |
| 73 | const tokens = getNameParentTokens(name, [environmentNamePrefix]); |
nothing calls this directly
no test coverage detected