Merge pull request #1525 from nkt/exponentiation-operator-inline
Added missing exponential operator inlining
This commit is contained in:
commit
a6cf28c5b5
@ -120,6 +120,7 @@ export function evaluate(): { confident: boolean; value: any } {
|
||||
case "/": return left / right;
|
||||
case "*": return left * right;
|
||||
case "%": return left % right;
|
||||
case "**": return Math.pow(left, right);
|
||||
case "<": return left < right;
|
||||
case ">": return left > right;
|
||||
case "<=": return left <= right;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user