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
with libsass, type-of(inspect(white)) returns color but with sass it returns string. I am guessing string is the desired result.
see this https://gist.github.com/CHedgren/048b98d1655ea6835e4c
// ---- // libsass (v3.2.5) // ----
div:after { content: type-of(inspect(white)); }
outputs:
div:after { content: color; }
whereas I expected
div:after { content: string; }
The text was updated successfully, but these errors were encountered:
inspect should always return a string.
Sorry, something went wrong.
Duplicate of #1281
mgreter
No branches or pull requests
with libsass, type-of(inspect(white)) returns color but with sass it returns string. I am guessing string is the desired result.
see this https://gist.github.com/CHedgren/048b98d1655ea6835e4c
// ----
// libsass (v3.2.5)
// ----
div:after {
content: type-of(inspect(white));
}
outputs:
div:after {
content: color;
}
whereas I expected
div:after {
content: string;
}
The text was updated successfully, but these errors were encountered: