[READ-ONLY] Mirror of https://github.com/probablykasper/starchart. GitHub star history graph starchart.kasper.space
chart github github-api github-star graph history star star-history stargazers stars
0

Configure Feed

Select the types of activity you want to include in your feed.

Format

Kasper (Mar 10, 2025, 12:12 AM +0100) 557b6d61 3ac8f855

+1 -1
+1 -1
src/routes/RepoInput.svelte
··· 10 10 async function parseOwnerField() { 11 11 const slashIndex = owner.indexOf('/') 12 12 if (slashIndex >= 0) { 13 - owner = owner.replace(/^https?:\/\//, "").replace("github.com/", "") 13 + owner = owner.replace(/^https?:\/\//, '').replace('github.com/', '') 14 14 const newOwner = owner.slice(0, slashIndex) 15 15 const newRepo = owner.slice(slashIndex + 1) 16 16 owner = newOwner