DEBSOURCES
Skip Quicknav
sources / node-node-sass / 7.0.3%2Bgit20221109.ee13eb9%2Bdfsg-2 / sass-spec / spec / scss / for_in_functions / input.scss
12345678910111213
@function foo() { $limit: 10; $y: 0; @for $x from 1 through $limit { $limit: 4; $y: $y + $x; } @return $y; } div { width: foo(); }