Skip to content

Commit

Permalink
Fixed trailing space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LavrL committed Feb 13, 2018
1 parent 0717c11 commit 8a5acbe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/calculator.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ exports._check = (x, y) => {
return x + y;
};


exports.add = (x, y) => {
exports._check(x, y);
return x + y;
};

exports.subtract = (x, y) => {
exports._check(x, y);
exports._check(x, y);
return x - y;
};

Expand Down

0 comments on commit 8a5acbe

Please sign in to comment.