mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-12-22 13:22:11 +01:00
Removed debugger
This commit is contained in:
parent
4433dd11da
commit
a69c63aa22
1 changed files with 0 additions and 2 deletions
|
@ -330,12 +330,10 @@ GitStats.authorsPie = function (options, callback) {
|
||||||
if (authors.length > 50) {
|
if (authors.length > 50) {
|
||||||
var others = {
|
var others = {
|
||||||
value: authors.slice(50).reduce(function (a, b) {
|
value: authors.slice(50).reduce(function (a, b) {
|
||||||
debugger
|
|
||||||
return a + b.value;
|
return a + b.value;
|
||||||
}, 0)
|
}, 0)
|
||||||
, label: "Others"
|
, label: "Others"
|
||||||
};
|
};
|
||||||
debugger
|
|
||||||
authors = authors.slice(0, 50);
|
authors = authors.slice(0, 50);
|
||||||
authors.push(others);
|
authors.push(others);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue