Closed
Description
Thoughts on adding native support for exponents in Sass expressions? While a simple loop can easily calculate positive integers, other values are more difficult to calculate. It can be done but not efficiently in pure Sass.
Preferred syntax would be like Ruby:
5px**2
A function could work as well:
pow(5px, 2)