We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
const {parse} = require('postcss-values-parser') ;['Red', 'GREEN', 'whiteSmoke'].forEach(color => { parse(color, {loose: true}).walk(node => { console.log(node.isColor) }) })
Expected isColor to be true for all of these cases
isColor
true
isColor is false for all of these cases
false
The text was updated successfully, but these errors were encountered:
Good catch. Should be an easy fix.
Sorry, something went wrong.
eeff228
Fixed and released in v3.0.0 proper. We're out of beta. Thank you for your help in adopting the beta!
Whoo! 🎉
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
How Do We Reproduce?
Expected Behavior
Expected
isColor
to betrue
for all of these casesActual Behavior
isColor
isfalse
for all of these casesRelated issues and code
The text was updated successfully, but these errors were encountered: