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.
1 parent b6b318a commit 8751d6eCopy full SHA for 8751d6e
lib/index.js
@@ -529,7 +529,7 @@ GitStats.prototype.authors = function (options, callback) {
529
repo.exec("shortlog -s -n --all", function (err, stdout) {
530
if (err) { return callback(err); }
531
var lines = stdout.split("\n");
532
- pieData = stdout.split("\n").map(function (c) {
+ var pieData = stdout.split("\n").map(function (c) {
533
var splits = c.split("\t").map(function (cc) {
534
return cc.trim();
535
});
0 commit comments