Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Yves Le Maout committed Sep 26, 2014
1 parent 1ce9e49 commit ab20084
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/math-trig.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ exports.SERIESSUM = function(x, n, m, coefficients) {
x = utils.parseNumber(x);
n = utils.parseNumber(n);
m = utils.parseNumber(m);
var coefficients = utils.parseNumberArray(coefficients);
coefficients = utils.parseNumberArray(coefficients);
if (utils.anyIsError(x, n, m, coefficients)) {
return error.value;
}
Expand Down Expand Up @@ -942,12 +942,11 @@ exports.SUM = function() {
result += exports.SUM.apply(null, elt);
}
}

return result;
};

exports.SUMIF = function(range, criteria) {
var range = utils.parseNumberArray(utils.flatten(range));
range = utils.parseNumberArray(utils.flatten(range));
if (range instanceof Error) {
return range;
}
Expand Down

0 comments on commit ab20084

Please sign in to comment.