(branch: string)
| 30 | } |
| 31 | |
| 32 | export function contentKeyFromBranch(branch: string) { |
| 33 | return branch.slice(`${CMS_BRANCH_PREFIX}/`.length); |
| 34 | } |
| 35 | |
| 36 | export function branchFromContentKey(contentKey: string) { |
| 37 | return `${CMS_BRANCH_PREFIX}/${contentKey}`; |
no outgoing calls
no test coverage detected