leftover codes

This commit is contained in:
Mahdi Dibaiee 2015-06-21 23:34:48 +04:30
parent 485ebb3c9d
commit f7fcbf9ef6
2 changed files with 0 additions and 14 deletions

7
dist/index.js vendored
View File

@ -107,13 +107,6 @@ var Equation = {
};
},
// 2x + 5x * x => 7x^2
simplify: function simplify(expression) {
var stack = parseExpression(expression);
console.log(stack);
},
registerOperator: function registerOperator(key, options) {
_operators2['default'][key] = options;
},

View File

@ -80,13 +80,6 @@ let Equation = {
};
},
// 2x + 5x * x => 7x^2
simplify(expression) {
let stack = parseExpression(expression);
console.log(stack);
},
registerOperator(key, options) {
operators[key] = options;
},