Refactor variable names for clarity in repository fetching logic
This commit is contained in:
parent
a9ae1d92b7
commit
d8b09526fc
1 changed files with 3 additions and 3 deletions
6
index.ts
6
index.ts
|
@ -16,10 +16,10 @@ if (process.env.AuthorizationHeaderToken) {
|
||||||
|
|
||||||
const getTopLangs = async (type: "users" | "orgs", name: string) => {
|
const getTopLangs = async (type: "users" | "orgs", name: string) => {
|
||||||
const obj: Record<string, number> = {}
|
const obj: Record<string, number> = {}
|
||||||
const userRepoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
|
const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
|
||||||
const userRepos = await userRepoResp.json() as repos;
|
const repos = await repoResp.json() as repos;
|
||||||
|
|
||||||
for (const repo of userRepos) {
|
for (const repo of repos) {
|
||||||
const lang = repo.language;
|
const lang = repo.language;
|
||||||
|
|
||||||
if (obj[lang] && lang !== "") {
|
if (obj[lang] && lang !== "") {
|
||||||
|
|
Loading…
Add table
Reference in a new issue