We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code was working correctly up until one of the last minor bumps.
@function apply($args) { @return call($args...); } @function foo($a, $b, $c){ @return $a $b $c; } .fntest { output: call(foo,1,2,3); output: apply(foo 1 2 3); }
Returned correctly, as late as v3.3.4:
v3.3.4
.fntest { output: 1 2 3; output: 1 2 3; }
now with v3.3.6 returns:
v3.3.6
.fntest { output: 1 2 3; output: foo 1 2 3...(); }
The text was updated successfully, but these errors were encountered:
Probably a duplicate of #2034
Sorry, something went wrong.
Add todo spec test for libsass issue 2057
0e8d524
sass/libsass#2057
mgreter
No branches or pull requests
The following code was working correctly up until one of the last minor bumps.
Returned correctly, as late as
v3.3.4
:now with
v3.3.6
returns:The text was updated successfully, but these errors were encountered: