We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lines
1 parent f012b85 commit 3be75adCopy full SHA for 3be75ad
lib/index.js
@@ -528,7 +528,7 @@ GitStats.prototype.authors = function (options, callback) {
528
var repo = new Gry(options.repo);
529
repo.exec("shortlog -s -n --all", function (err, stdout) {
530
if (err) { return callback(err); }
531
- lines = stdout.split("\n");
+ var lines = stdout.split("\n");
532
pieData = stdout.split("\n").map(function (c) {
533
var splits = c.split("\t").map(function (cc) {
534
return cc.trim();
0 commit comments