(repository = DEFAULT_REPOSITORY, branch = DEFAULT_BRANCH)
| 5 | export const RAW_GITHUB_ORIGIN = "https://raw.githubusercontent.com"; |
| 6 | |
| 7 | export function githubBlobPrefix(repository = DEFAULT_REPOSITORY, branch = DEFAULT_BRANCH) { |
| 8 | return `${GITHUB_ORIGIN}/${repository}/blob/${branch}/`; |
| 9 | } |
| 10 | |
| 11 | export function githubRawPrefix(repository = DEFAULT_REPOSITORY, branch = DEFAULT_BRANCH) { |
| 12 | return `${RAW_GITHUB_ORIGIN}/${repository}/${branch}/`; |
no outgoing calls
no test coverage detected