Merge pull request #2854 from lankerened/patch-1

fix: bug caused by GitHub data change
This commit is contained in:
Ilya Kantor 2022-02-06 13:10:10 +03:00 committed by GitHub
commit d159503ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -376,7 +376,7 @@ An example of use (shows commit authors in console):
for await (const commit of fetchCommits('javascript-tutorial/en.javascript.info')) {
console.log(commit.author.name);
console.log(commit.author.login);
if (++count == 100) { // let's stop at 100 commits
break;