Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

Commit

Permalink
Remove debugger statement (Whoopsie! 0_o)
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaMorphic committed Apr 23, 2019
1 parent 59a5e10 commit fafa5fb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,6 @@ Term.prototype.divide = function(a, simplify) {
};

Term.prototype.eval = function(values, simplify) {
debugger;
var copy = this.copy();
var keys = Object.keys(values);
var exp = copy.coefficients.reduce(function(p, c) { return p.multiply(c, simplify); }, new Expression(1));
Expand Down

0 comments on commit fafa5fb

Please sign in to comment.