mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-12-22 13:22:11 +01:00
Declare variable
This commit is contained in:
parent
b6b318addd
commit
8751d6efb5
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ GitStats.prototype.authors = function (options, callback) {
|
||||||
repo.exec("shortlog -s -n --all", function (err, stdout) {
|
repo.exec("shortlog -s -n --all", function (err, stdout) {
|
||||||
if (err) { return callback(err); }
|
if (err) { return callback(err); }
|
||||||
var lines = stdout.split("\n");
|
var lines = stdout.split("\n");
|
||||||
pieData = stdout.split("\n").map(function (c) {
|
var pieData = stdout.split("\n").map(function (c) {
|
||||||
var splits = c.split("\t").map(function (cc) {
|
var splits = c.split("\t").map(function (cc) {
|
||||||
return cc.trim();
|
return cc.trim();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue