1<===> options.yml
2:todo:
3- sass/libsass#2807
4
5<===>
6================================================================================
7<===> positive/input.scss
8@use 'sass:math';
9a {b: math.pow(10.0, 30)}
10
11<===> positive/output.css
12a {
13  b: 1000000000000000000000000000000;
14}
15
16<===>
17================================================================================
18<===> negative/input.scss
19@use 'sass:math';
20a {b: -(math.pow(10.0, 30))}
21
22<===> negative/output.css
23a {
24  b: -1000000000000000000000000000000;
25}
26