Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Map upwork data #45100

Merged
merged 14 commits into from
Oct 2, 2024
Prev Previous commit
Handle NaN from header row
  • Loading branch information
roryabraham committed Oct 2, 2024
commit b645d20b1d6ed59feb18a0d7e3e1b806665d079d
6 changes: 5 additions & 1 deletion scripts/aggregateGitHubDataFromUpwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 76,11 @@ const issues = fs
if (!issue) {
return acc;
}
acc.push(Number(issue.trim()));
const issueNum = Number(issue.trim());
if (!issueNum) {
return acc;
}
acc.push(issueNum);
return acc;
}, [] as number[]);

Expand Down
Loading