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
I get an incorrect AST when I enter a media query without any expressions (basically anything of this format):
media_query: [[only | not]? <media_type>
For example:
console.log(mediaquery.parse('not screen')); /* logs out [ { inverse: false, type: 'all', expressions: [] } ] */
This should really be:
[ { inverse: true, type: 'screen', expressions: [] } ]
The text was updated successfully, but these errors were encountered:
d1413c5
This is up on npm @ v0.1.2
Sorry, something went wrong.
No branches or pull requests
I get an incorrect AST when I enter a media query without any expressions (basically anything of this format):
For example:
This should really be:
The text was updated successfully, but these errors were encountered: