This library contains methods to beautify an excel formula. This library also contains functions to convert an excel formula to JavaScript (ECMAScript) or C# and python.
When converting the formula '=A1^2' to javascript, it gives 'A1^2' as the result, but ^ in javascript is the bitwise XOR operator. It should be 'Math.pow(A1, 2)'
When converting the formula '=A1^2' to javascript, it gives 'A1^2' as the result, but ^ in javascript is the bitwise XOR operator. It should be 'Math.pow(A1, 2)'