zzz / frontend /src /utils /parse-github-url.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
511 Bytes
/**
* Given a GitHub URL of a repository, obtain the owner and repository name
* @param url The GitHub repository URL
* @returns An array containing the owner and repository names
*
* @example
* const parsed = parseGithubUrl("https://github.com/All-Hands-AI/OpenHands");
* console.log(parsed) // ["All-Hands-AI", "OpenHands"]
*/
export const parseGithubUrl = (url: string) => {
const parts = url.replace("https://github.com/", "").split("/");
return parts.length === 2 ? parts : [];
};