<===> options.yml
:todo:
- sass/libsass#2807
<===>
================================================================================
<===> positive/input.scss
@use 'sass:math';
a {b: math.pow(10.0, 30)}
<===> positive/output.css
a {
b: 1000000000000000000000000000000;
}
<===>
================================================================================
<===> negative/input.scss
@use 'sass:math';
a {b: -(math.pow(10.0, 30))}
<===> negative/output.css
a {
b: -1000000000000000000000000000000;
}